]> granicus.if.org Git - apache/commitdiff
Fix a typo in an example.
authorJoshua Slive <slive@apache.org>
Wed, 12 Mar 2008 17:35:47 +0000 (17:35 +0000)
committerJoshua Slive <slive@apache.org>
Wed, 12 Mar 2008 17:35:47 +0000 (17:35 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@636432 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/rewrite/rewrite_intro.html.en
docs/manual/rewrite/rewrite_intro.xml

index decc55a979e09a7b0131738f8cb4e11aea589407..dd59e4c969426cc9fd7b104e9011de4b5ad8751f 100644 (file)
@@ -245,7 +245,7 @@ argument is a list of flags that modify how the match is evaluated.</p>
 <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>
 
index 901a6e38e9539c843df7d48e4318ca472db8cb1f..1b5f7ded8a3e7bfaaa0e8a270c697160480dbc96 100644 (file)
@@ -251,7 +251,7 @@ argument is a list of flags that modify how the match is evaluated.</p>
 <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>