diff options
author | Vincent Bray <noodl@apache.org> | 2007-11-30 01:20:19 +0100 |
---|---|---|
committer | Vincent Bray <noodl@apache.org> | 2007-11-30 01:20:19 +0100 |
commit | 37cf7368b2c26a0163e6d9ef0e3d394bd4fb66a5 (patch) | |
tree | e659cdfc4c3d7176261f35d37556b7ad563df285 /docs | |
parent | Do a better job of checking managing memory during subgroup processing. (diff) | |
download | apache2-37cf7368b2c26a0163e6d9ef0e3d394bd4fb66a5.tar.xz apache2-37cf7368b2c26a0163e6d9ef0e3d394bd4fb66a5.zip |
Briefly mention UserDir's url redirection abilities
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@599655 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/howto/public_html.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/manual/howto/public_html.xml b/docs/manual/howto/public_html.xml index 4a86d3f634..ba76f979d5 100644 --- a/docs/manual/howto/public_html.xml +++ b/docs/manual/howto/public_html.xml @@ -116,6 +116,20 @@ <code>/var/html/rbowen/file.html</code></p> </section> + + <section id="redirect"> + <title>Redirecting to external URLs</title> + <p>The <directive module="mod_userdir">UserDir</directive> directive can be + used to redirect user directory requests to external URLs.</p> + + <example> + UserDir http://www.foo.com/users/*/ + </example> + + <p>The above example will redirect a request for + <code>http://example.com/~bob/abc.html</code> to + <code>http://www.foo.com/users/bob/abc.html</code>.</p> + </section> <section id="enable"> <title>Restricting what users are permitted to use this |