You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sl...@apache.org on 2008/03/12 18:36:53 UTC

svn commit: r636433 - in /httpd/httpd/branches/2.2.x/docs/manual/rewrite: rewrite_intro.html.en rewrite_intro.xml

Author: slive
Date: Wed Mar 12 10:36:49 2008
New Revision: 636433

URL: http://svn.apache.org/viewvc?rev=636433&view=rev
Log:
Merge r636432 from trunk:

Fix a typo in an example.


Modified:
    httpd/httpd/branches/2.2.x/docs/manual/rewrite/rewrite_intro.html.en
    httpd/httpd/branches/2.2.x/docs/manual/rewrite/rewrite_intro.xml

Modified: httpd/httpd/branches/2.2.x/docs/manual/rewrite/rewrite_intro.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/rewrite/rewrite_intro.html.en?rev=636433&r1=636432&r2=636433&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/rewrite/rewrite_intro.html.en (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/rewrite/rewrite_intro.html.en Wed Mar 12 10:36:49 2008
@@ -245,7 +245,7 @@
 <p>For example, to send all requests from a particular IP range to a
 different server, you could use:</p>
 <div class="example"><p><code>
-RewriteCond %{REMOTE_ADDR} ^10\2.<br />
+RewriteCond %{REMOTE_ADDR} ^10\.2\.<br />
 RewriteRule (.*) http://intranet.example.com$1
 </code></p></div>
 

Modified: httpd/httpd/branches/2.2.x/docs/manual/rewrite/rewrite_intro.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/rewrite/rewrite_intro.xml?rev=636433&r1=636432&r2=636433&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/rewrite/rewrite_intro.xml (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/rewrite/rewrite_intro.xml Wed Mar 12 10:36:49 2008
@@ -251,7 +251,7 @@
 <p>For example, to send all requests from a particular IP range to a
 different server, you could use:</p>
 <example>
-RewriteCond %{REMOTE_ADDR} ^10\2.<br />
+RewriteCond %{REMOTE_ADDR} ^10\.2\.<br />
 RewriteRule (.*) http://intranet.example.com$1
 </example>