diff options
author | Eric Covener <covener@apache.org> | 2011-09-04 23:22:36 +0200 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2011-09-04 23:22:36 +0200 |
commit | 474cdce9f2132f993624a17c3a9d478318f91a05 (patch) | |
tree | e7ef15a3e455fdc183926acb6e34a4fab0e71bf3 /docs/manual | |
parent | Revert r1163833: (diff) | |
download | apache2-474cdce9f2132f993624a17c3a9d478318f91a05.tar.xz apache2-474cdce9f2132f993624a17c3a9d478318f91a05.zip |
be explicit that REQUEST_URI is the path component only
(like r->uri)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1165114 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual')
-rw-r--r-- | docs/manual/mod/mod_rewrite.xml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/manual/mod/mod_rewrite.xml b/docs/manual/mod/mod_rewrite.xml index 53de3b3e57..80d3593889 100644 --- a/docs/manual/mod/mod_rewrite.xml +++ b/docs/manual/mod/mod_rewrite.xml @@ -490,9 +490,10 @@ RewriteRule ^index\.html$ newsite.html <dt><code>REQUEST_URI</code></dt> - <dd>The resource requested in the HTTP request - line. (In the example above, this would be - "/index.html".)</dd> + <dd>The path component of the requested URI, + such as "/index.html". This notably excludes the + query string which is available as as its own variable + named <code>QUERY_STRING</code>.</dd> <dt><code>REQUEST_FILENAME</code></dt> |