From: Joshua Slive Date: Wed, 12 Mar 2008 17:36:49 +0000 (+0000) Subject: Merge r636432 from trunk: X-Git-Tag: 2.2.9~303 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1aae66c65e75adf22d30ac0e3db534b6c7deb45a;p=thirdparty%2Fapache%2Fhttpd.git Merge r636432 from trunk: 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 --- diff --git a/docs/manual/rewrite/rewrite_intro.html.en b/docs/manual/rewrite/rewrite_intro.html.en index 8a3c0d72f2c..a58f64cd15a 100644 --- a/docs/manual/rewrite/rewrite_intro.html.en +++ b/docs/manual/rewrite/rewrite_intro.html.en @@ -245,7 +245,7 @@ argument is a list of flags that modify how the match is evaluated.

For example, to send all requests from a particular IP range to a different server, you could use:

-RewriteCond %{REMOTE_ADDR} ^10\2.
+RewriteCond %{REMOTE_ADDR} ^10\.2\.
RewriteRule (.*) http://intranet.example.com$1

diff --git a/docs/manual/rewrite/rewrite_intro.xml b/docs/manual/rewrite/rewrite_intro.xml index 901a6e38e95..1b5f7ded8a3 100644 --- a/docs/manual/rewrite/rewrite_intro.xml +++ b/docs/manual/rewrite/rewrite_intro.xml @@ -251,7 +251,7 @@ argument is a list of flags that modify how the match is evaluated.

For example, to send all requests from a particular IP range to a different server, you could use:

-RewriteCond %{REMOTE_ADDR} ^10\2.
+RewriteCond %{REMOTE_ADDR} ^10\.2\.
RewriteRule (.*) http://intranet.example.com$1