From: Vincent Bray Date: Thu, 29 Nov 2007 22:19:00 +0000 (+0000) Subject: Repeated 'RewriteRule' X-Git-Tag: 2.3.0~1202 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=10ecac4ec567dc4eff0165fe0475e29b3d4da92d;p=apache Repeated 'RewriteRule' git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@599603 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_rewrite.html.en b/docs/manual/mod/mod_rewrite.html.en index c7696e7914..d06031a29c 100644 --- a/docs/manual/mod/mod_rewrite.html.en +++ b/docs/manual/mod/mod_rewrite.html.en @@ -1250,7 +1250,7 @@ cannot use $N in the substitution string! so backreferences will be unescaped at the time they are applied. Using the B flag, non-alphanumeric characters in backreferences will be escaped. For example, consider the rule:

-
 RewriteRule RewriteRule ^(.*)$   index.php?show=$1 
+
 RewriteRule ^(.*)$ index.php?show=$1 

This will map /C++ to index.php?show=/C++. But it will also map /C%2b%2b to index.php?show=/C++, because the %2b diff --git a/docs/manual/mod/mod_rewrite.xml b/docs/manual/mod/mod_rewrite.xml index fbc102d2b9..5b7d743534 100644 --- a/docs/manual/mod/mod_rewrite.xml +++ b/docs/manual/mod/mod_rewrite.xml @@ -1266,7 +1266,7 @@ cannot use $N in the substitution string! so backreferences will be unescaped at the time they are applied. Using the B flag, non-alphanumeric characters in backreferences will be escaped. For example, consider the rule:

-
 RewriteRule RewriteRule ^(.*)$   index.php?show=$1 
+
 RewriteRule ^(.*)$ index.php?show=$1 

This will map /C++ to index.php?show=/C++. But it will also map /C%2b%2b to index.php?show=/C++, because the %2b