diff options
author | http://docwhat.org/ <docwhat@web> | 2011-06-08 19:27:51 +0000 |
---|---|---|
committer | admin <admin@branchable.com> | 2011-06-08 19:27:51 +0000 |
commit | 38021b0a59c2f17b1a1e85b2d1bb1a5d219e3aa2 (patch) | |
tree | 97ec08ef5c1f7eceb3e717de2c55d60564303eff | |
parent | 06a9e1cc41c3b7beb88387405c6a7d1e712ebfb2 (diff) | |
download | ikiwiki-38021b0a59c2f17b1a1e85b2d1bb1a5d219e3aa2.tar ikiwiki-38021b0a59c2f17b1a1e85b2d1bb1a5d219e3aa2.tar.gz |
-rw-r--r-- | doc/bugs/404_plugin_should_handle_403.mdwn | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/bugs/404_plugin_should_handle_403.mdwn b/doc/bugs/404_plugin_should_handle_403.mdwn new file mode 100644 index 000000000..71aed632e --- /dev/null +++ b/doc/bugs/404_plugin_should_handle_403.mdwn @@ -0,0 +1,8 @@ +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). + +The [[404 plugin|plugins/404]] code only checks for 404, not 403. It should check for both. + +See Also: + + * [StackOverflow: 404-vs-403](http://stackoverflow.com/questions/5075300/404-vs-403-when-directory-index-is-missing) + * [[404 plugin discussion|plugins/404/discussion]] |