]> granicus.if.org Git - apache/commitdiff
buildfluff
authorVincent Bray <noodl@apache.org>
Tue, 18 Sep 2007 17:12:53 +0000 (17:12 +0000)
committerVincent Bray <noodl@apache.org>
Tue, 18 Sep 2007 17:12:53 +0000 (17:12 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@576981 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_rewrite.html.en

index fc02d5c2a94cb104524e4a4de8ed930e4cd79b97..dc762b98db7fbb8a62d8d37859dfcb24150cdb72 100644 (file)
@@ -1251,11 +1251,11 @@ cannot use <code>$N</code> in the substitution string!
         Using the B flag, non-alphanumeric characters in backreferences
         will be escaped.  For example, consider the rule:</p>
         <pre><code> RewriteRule RewriteRule ^(.*)$   index.php?show=$1 </code></pre>
-        <p>This will map <code>/C++</code> to <code>index.php?show=C++</code>.
+        <p>This will map <code>/C++</code> to <code>index.php?show=/C++</code>.
         But it will also map <code>/C%2b%2b</code> to
-        <code>index.php?show=C++</code>, because the <code>%2b</code>
+        <code>index.php?show=/C++</code>, because the <code>%2b</code>
         has been unescaped.  With the B flag, it will instead map to
-        <code>index.php?show=&gt;/C%2b%2b</code>.</p>
+        <code>index.php?show=/C%2b%2b</code>.</p>
         <p>This escaping is particularly necessary in a proxy situation,
         when the backend may break if presented with an unescaped URL.</p>
         </dd>