]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge r636432 from trunk:
authorJoshua Slive <slive@apache.org>
Wed, 12 Mar 2008 17:36:49 +0000 (17:36 +0000)
committerJoshua Slive <slive@apache.org>
Wed, 12 Mar 2008 17:36:49 +0000 (17:36 +0000)
Fix a typo in an example.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@636433 13f79535-47bb-0310-9956-ffa450edef68

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

index 8a3c0d72f2c3f5772779f27cd3acc53f70374628..a58f64cd15af572c5b3e8f1c8db280456c27ce9a 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>