From 21a4fb69dcc3c5a5080197450c41361210259b44 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Igor=20Gali=C4=87?= Date: Sat, 11 Dec 2010 20:09:32 +0000 Subject: [PATCH] The local uri part is *always* the whole Request_URI. Including the leading /. Otherwise we end up with a 500, for infinite recursion. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1044701 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_dir.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/manual/mod/mod_dir.xml b/docs/manual/mod/mod_dir.xml index 3f5a2fa8c7..5c69ddb44b 100644 --- a/docs/manual/mod/mod_dir.xml +++ b/docs/manual/mod/mod_dir.xml @@ -169,7 +169,7 @@ a directory in your filesystem, and would otherwise return HTTP 404 (Not Found). For example

- FallbackResource not-404.php + FallbackResource /not-404.php

will cause requests for non-existent files to be handled by not-404.php, while requests for files that exist @@ -183,7 +183,7 @@ a directory -d tests for file and directory existence. This now requires only one line of configuration.

- FallbackResource index.php + FallbackResource /index.php

Existing files, such as images, css files, and so on, will be served normally.

@@ -193,7 +193,7 @@ a directory <Directory /web/example.com/htdocs/blog>
- FallbackResource /blog/index.php
+ FallbackResource /blog/index.php
</Directory>
-- 2.40.0