From: Vincent Bray
Date: Sun, 16 Mar 2008 23:33:45 +0000 (+0000)
Subject: Backport r637682 (Lucien Gentis' rewrite_intro fixes)
X-Git-Tag: 2.2.9~288
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c3100be23d322950d396aa5ed43188e54cb0f6f;p=thirdparty%2Fapache%2Fhttpd.git
Backport r637682 (Lucien Gentis' rewrite_intro fixes)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@637689 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/rewrite/rewrite_intro.xml b/docs/manual/rewrite/rewrite_intro.xml
index 1b5f7ded8a3..f1454a008bb 100644
--- a/docs/manual/rewrite/rewrite_intro.xml
+++ b/docs/manual/rewrite/rewrite_intro.xml
@@ -211,7 +211,7 @@ RewriteRule ^/product/(.*)/view$ /var/web/productdb/$1
was matched by the expression inside the parenthesis in
the Pattern. For example, a request
for http://example.com/product/r14df/view
will be mapped
-to the path /var/web/productdbr14df
.
+to the path /var/web/productdb/r14df
.
If there is more than one expression in parenthesis, they are
available in order in the
@@ -224,7 +224,7 @@ on.
Rewrite Flags
The behavior of a RewriteRule can be modified by the
-application of one more flags to the end of the rule. For example, the
+application of one or more flags to the end of the rule. For example, the
matching behavior of a rule can be made case-insensitive by the
application of the [NC]
flag:
@@ -305,7 +305,7 @@ sections or .htaccess
files at the expense of some additional complexity. This technique
is called per-directory rewrites.
-The main difference with per-directory rewrites is that the path
+
The main difference with per-server rewrites is that the path
prefix of the directory containing the .htaccess
file is
stripped before matching in
the RewriteRule. In addition, the RewriteBase should be used to assure the request is properly mapped.