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:35:51 UTC

svn commit: r636432 - in /httpd/httpd/trunk/docs/manual/rewrite: rewrite_intro.html.en rewrite_intro.xml

Author: slive
Date: Wed Mar 12 10:35:47 2008
New Revision: 636432

URL: http://svn.apache.org/viewvc?rev=636432&view=rev
Log:
Fix a typo in an example.

Modified:
    httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.html.en
    httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.xml

Modified: httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.html.en?rev=636432&r1=636431&r2=636432&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.html.en (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.html.en Wed Mar 12 10:35:47 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/trunk/docs/manual/rewrite/rewrite_intro.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.xml?rev=636432&r1=636431&r2=636432&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.xml (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.xml Wed Mar 12 10:35:47 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>