diff options
-rw-r--r-- | docs/manual/mod/mod_alias.html.en | 14 | ||||
-rw-r--r-- | docs/manual/mod/mod_alias.xml | 14 |
2 files changed, 18 insertions, 10 deletions
diff --git a/docs/manual/mod/mod_alias.html.en b/docs/manual/mod/mod_alias.html.en index 14c5b2e7b7..e5ec8e5b20 100644 --- a/docs/manual/mod/mod_alias.html.en +++ b/docs/manual/mod/mod_alias.html.en @@ -214,10 +214,11 @@ a different URL</td></tr> the client to refetch the resource at the new location.</p> <p>The old <em>URL-path</em> is a case-sensitive (%-decoded) path - beginning with a slash. A relative path is not allowed. The new - <em>URL</em> should be an absolute URL beginning with a scheme and - hostname, but a URL-path beginning with a slash may also be used, - in which case the scheme and hostname of the current server will + beginning with a slash. A relative path is not allowed.</p> + + <p>The new <em>URL</em> may be either an absolute URL beginning + with a scheme and hostname, or a URL-path beginning with a slash. + In this latter case the scheme and hostname of the current server will be added.</p> <p>Then any request beginning with <em>URL-Path</em> will return a @@ -226,7 +227,10 @@ a different URL</td></tr> <em>URL-Path</em> will be appended to the target URL.</p> <div class="example"><h3>Example:</h3><p><code> - Redirect /service http://foo2.example.com/service + Redirect /service http://foo2.example.com/service<br /> + <br /> + # Redirect to a URL on the same host<br /> + Redirect /one /two </code></p></div> <p>If the client requests <code>http://example.com/service/foo.txt</code>, diff --git a/docs/manual/mod/mod_alias.xml b/docs/manual/mod/mod_alias.xml index c4ade09655..cc5f1615d1 100644 --- a/docs/manual/mod/mod_alias.xml +++ b/docs/manual/mod/mod_alias.xml @@ -205,10 +205,11 @@ a different URL</description> the client to refetch the resource at the new location.</p> <p>The old <em>URL-path</em> is a case-sensitive (%-decoded) path - beginning with a slash. A relative path is not allowed. The new - <em>URL</em> should be an absolute URL beginning with a scheme and - hostname, but a URL-path beginning with a slash may also be used, - in which case the scheme and hostname of the current server will + beginning with a slash. A relative path is not allowed.</p> + + <p>The new <em>URL</em> may be either an absolute URL beginning + with a scheme and hostname, or a URL-path beginning with a slash. + In this latter case the scheme and hostname of the current server will be added.</p> <p>Then any request beginning with <em>URL-Path</em> will return a @@ -217,7 +218,10 @@ a different URL</description> <em>URL-Path</em> will be appended to the target URL.</p> <example><title>Example:</title> - Redirect /service http://foo2.example.com/service + Redirect /service http://foo2.example.com/service<br /> + <br /> + # Redirect to a URL on the same host<br /> + Redirect /one /two </example> <p>If the client requests <code>http://example.com/service/foo.txt</code>, |