From: Joshua Slive Date: Wed, 12 Mar 2008 17:35:47 +0000 (+0000) Subject: Fix a typo in an example. X-Git-Tag: 2.3.0~880 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33d746220a22740a1748fc2d1525af3c493b368b;p=thirdparty%2Fapache%2Fhttpd.git Fix a typo in an example. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@636432 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/rewrite/rewrite_intro.html.en b/docs/manual/rewrite/rewrite_intro.html.en index decc55a979e..dd59e4c9694 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