]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/bugs/404_plugin_should_handle_403.mdwn
71aed632ec81dea89b4d0557e353bca6477da4bf
[git.ikiwiki.info.git] / doc / bugs / 404_plugin_should_handle_403.mdwn
1 Apache will return 403 (Forbidden) instead of 404 (Not Found) if the `Indexes` option is turned off.  This is because with `Indexes` turned on, it considers it something it *might* be able to serve in the future.  With `Indexes` off, it will never serve that page in the future (unless `Indexes` is turned back on).
3 The [[404 plugin|plugins/404]] code only checks for 404, not 403.  It should check for both.
5 See Also:
7  * [StackOverflow: 404-vs-403](http://stackoverflow.com/questions/5075300/404-vs-403-when-directory-index-is-missing)
8  * [[404 plugin discussion|plugins/404/discussion]]