You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by no...@apache.org on 2007/11/29 23:37:32 UTC

svn commit: r599609 - in /httpd/httpd/branches/2.2.x/docs/manual/mod: mod_rewrite.html.en mod_rewrite.xml

Author: noodl
Date: Thu Nov 29 14:37:31 2007
New Revision: 599609

URL: http://svn.apache.org/viewvc?rev=599609&view=rev
Log:
Repeated 'RewriteRule'

Modified:
    httpd/httpd/branches/2.2.x/docs/manual/mod/mod_rewrite.html.en
    httpd/httpd/branches/2.2.x/docs/manual/mod/mod_rewrite.xml

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/mod_rewrite.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/mod_rewrite.html.en?rev=599609&r1=599608&r2=599609&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/mod_rewrite.html.en (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/mod_rewrite.html.en Thu Nov 29 14:37:31 2007
@@ -1212,7 +1212,7 @@
         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:</p>
-        <pre><code> RewriteRule RewriteRule ^(.*)$   index.php?show=$1 </code></pre>
+        <pre><code> RewriteRule ^(.*)$ index.php?show=$1 </code></pre>
         <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>

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/mod_rewrite.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/mod_rewrite.xml?rev=599609&r1=599608&r2=599609&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/mod_rewrite.xml (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/mod_rewrite.xml Thu Nov 29 14:37:31 2007
@@ -1228,7 +1228,7 @@
         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:</p>
-        <pre><code> RewriteRule RewriteRule ^(.*)$   index.php?show=$1 </code></pre>
+        <pre><code> RewriteRule ^(.*)$ index.php?show=$1 </code></pre>
         <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>