From: Rich Bowen Date: Tue, 17 Mar 2009 18:12:29 +0000 (+0000) Subject: %{REQUEST_URL} is now %{REQUEST_URI}, and has been for quite some time. X-Git-Tag: 2.2.12~194 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=da8352f3757a47350bef8e3ae4d53d79a4978b6b;p=thirdparty%2Fapache%2Fhttpd.git %{REQUEST_URL} is now %{REQUEST_URI}, and has been for quite some time. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@755338 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/misc/rewriteguide.html.en b/docs/manual/misc/rewriteguide.html.en index 76071cc2098..532739454e9 100644 --- a/docs/manual/misc/rewriteguide.html.en +++ b/docs/manual/misc/rewriteguide.html.en @@ -1753,10 +1753,10 @@ RewriteMap vhost txt:/path/to/vhost.map # via a huge and complicated single rule: # # 1. make sure we don't map for common locations -RewriteCond %{REQUEST_URL} !^/commonurl1/.* -RewriteCond %{REQUEST_URL} !^/commonurl2/.* +RewriteCond %{REQUEST_URI} !^/commonurl1/.* +RewriteCond %{REQUEST_URI} !^/commonurl2/.* : -RewriteCond %{REQUEST_URL} !^/commonurlN/.* +RewriteCond %{REQUEST_URI} !^/commonurlN/.* # # 2. make sure we have a Host header, because # currently our approach only supports diff --git a/docs/manual/misc/rewriteguide.xml b/docs/manual/misc/rewriteguide.xml index 57e86026754..f1fa5027a5f 100644 --- a/docs/manual/misc/rewriteguide.xml +++ b/docs/manual/misc/rewriteguide.xml @@ -1756,10 +1756,10 @@ RewriteMap vhost txt:/path/to/vhost.map # via a huge and complicated single rule: # # 1. make sure we don't map for common locations -RewriteCond %{REQUEST_URL} !^/commonurl1/.* -RewriteCond %{REQUEST_URL} !^/commonurl2/.* +RewriteCond %{REQUEST_URI} !^/commonurl1/.* +RewriteCond %{REQUEST_URI} !^/commonurl2/.* : -RewriteCond %{REQUEST_URL} !^/commonurlN/.* +RewriteCond %{REQUEST_URI} !^/commonurlN/.* # # 2. make sure we have a Host header, because # currently our approach only supports