From: Rich Bowen Date: Wed, 21 Mar 2007 10:56:05 +0000 (+0000) Subject: Match the comment to the rules - rules mention dir1 and dir2, comment X-Git-Tag: 2.3.0~1864 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=704287d81f317e88322d2d134e545bfa850934fb;p=thirdparty%2Fapache%2Fhttpd.git Match the comment to the rules - rules mention dir1 and dir2, comment refers to custom/ and pub/ git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@520834 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/rewrite/rewrite_guide.html.en b/docs/manual/rewrite/rewrite_guide.html.en index 26c2b4c518f..e6c4e679b47 100644 --- a/docs/manual/rewrite/rewrite_guide.html.en +++ b/docs/manual/rewrite/rewrite_guide.html.en @@ -276,12 +276,12 @@ RewriteRule ^/~(.+) http://newserver/~$1 [R,L]
 RewriteEngine on
 
-#   first try to find it in custom/...
+#   first try to find it in dir1/...
 #   ...and if found stop and be happy:
 RewriteCond         /your/docroot/dir1/%{REQUEST_FILENAME}  -f
 RewriteRule  ^(.+)  /your/docroot/dir1/$1  [L]
 
-#   second try to find it in pub/...
+#   second try to find it in dir2/...
 #   ...and if found stop and be happy:
 RewriteCond         /your/docroot/dir2/%{REQUEST_FILENAME}  -f
 RewriteRule  ^(.+)  /your/docroot/dir2/$1  [L]
diff --git a/docs/manual/rewrite/rewrite_guide.xml b/docs/manual/rewrite/rewrite_guide.xml
index ebc10d38f06..c14bec13bea 100644
--- a/docs/manual/rewrite/rewrite_guide.xml
+++ b/docs/manual/rewrite/rewrite_guide.xml
@@ -271,12 +271,12 @@ RewriteRule   ^/~(.+)  http://newserver/~$1  [R,L]
 
 RewriteEngine on
 
-#   first try to find it in custom/...
+#   first try to find it in dir1/...
 #   ...and if found stop and be happy:
 RewriteCond         /your/docroot/dir1/%{REQUEST_FILENAME}  -f
 RewriteRule  ^(.+)  /your/docroot/dir1/$1  [L]
 
-#   second try to find it in pub/...
+#   second try to find it in dir2/...
 #   ...and if found stop and be happy:
 RewriteCond         /your/docroot/dir2/%{REQUEST_FILENAME}  -f
 RewriteRule  ^(.+)  /your/docroot/dir2/$1  [L]