summaryrefslogtreecommitdiffstats
path: root/docs/manual/mod/mod_alias.html.en
diff options
context:
space:
mode:
authorIgor Galić <igalic@apache.org>2010-05-16 13:07:59 +0200
committerIgor Galić <igalic@apache.org>2010-05-16 13:07:59 +0200
commitecb9f26d7755e3595e11d06fef512e9ed40c391c (patch)
treea97b18274a8a8994207068587425df3716d6af98 /docs/manual/mod/mod_alias.html.en
parentAdding compatibility tag. (diff)
downloadapache2-ecb9f26d7755e3595e11d06fef512e9ed40c391c.tar.xz
apache2-ecb9f26d7755e3595e11d06fef512e9ed40c391c.zip
Clarifying Redirect of GET/POST.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@944795 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_alias.html.en')
-rw-r--r--docs/manual/mod/mod_alias.html.en7
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/manual/mod/mod_alias.html.en b/docs/manual/mod/mod_alias.html.en
index a1cfd3614c..39e08574ca 100644
--- a/docs/manual/mod/mod_alias.html.en
+++ b/docs/manual/mod/mod_alias.html.en
@@ -290,7 +290,12 @@ a different URL</td></tr>
<p>If the client requests <code>http://example.com/service/foo.txt</code>,
it will be told to access
<code>http://foo2.example.com/service/foo.txt</code>
- instead. Only complete path segments are matched, so the above
+ instead. This includes requests with <code>GET</code> parameters, such as
+ <code>http://example.com/service/foo.pl?q=23&amp;a=42</code>,
+ it will be redirected to
+ <code>http://foo2.example.com/service/foo.pl?q=23&amp;a=42</code>.
+ Note that <code>POST</code>s will be discarded.<br />
+ Only complete path segments are matched, so the above
example would not match a request for
<code>http://example.com/servicefoo.txt</code>. For more complex matching
using regular expressions, see the <code class="directive"><a href="#redirectmatch">RedirectMatch</a></code> directive.</p>