diff options
author | André Malo <nd@apache.org> | 2002-09-19 23:25:21 +0200 |
---|---|---|
committer | André Malo <nd@apache.org> | 2002-09-19 23:25:21 +0200 |
commit | 0888f88b4c4730aae71453d8b74add22baf5afff (patch) | |
tree | e7e6e2e54957bd2873dc148c9115f49a61846bd0 /docs/manual/mod/mod_vhost_alias.xml | |
parent | Kerplop. (diff) | |
download | apache2-0888f88b4c4730aae71453d8b74add22baf5afff.tar.xz apache2-0888f88b4c4730aae71453d8b74add22baf5afff.zip |
add a note, that mod_alias and mod_userdir are forced
to be run before mod_vhost_alias
Reviewed by: Joshua Slive
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96917 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_vhost_alias.xml')
-rw-r--r-- | docs/manual/mod/mod_vhost_alias.xml | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/docs/manual/mod/mod_vhost_alias.xml b/docs/manual/mod/mod_vhost_alias.xml index c2b91159be..2aa0f27d39 100644 --- a/docs/manual/mod/mod_vhost_alias.xml +++ b/docs/manual/mod/mod_vhost_alias.xml @@ -11,19 +11,30 @@ hosting</description> <identifier>vhost_alias_module</identifier> <summary> - <p>This module creates dynamically configured virtual hosts, by allowing the IP address and/or the <code>Host:</code> header of the HTTP request to be used as part of the pathname to determine what files to serve. This allows for easy use of a huge number of virtual hosts with similar configurations.</p> - - + + <note><title>Note</title> + <p>If <module>mod_alias</module> or <module>mod_userdir</module> are + used for translating URIs to filenames, they will override the + directives of <module>mod_vhost_alias</module> described below. For + example, the following configuration will map <code> + /cgi-bin/script.pl</code> to <code> + /usr/local/apache2/cgi-bin/script.pl</code> in all cases:</p> + + <example> + ScriptAlias /cgi-bin/ /usr/local/apache2/cgi-bin/<br /> + VirtualScriptAlias /never/found/%0/cgi-bin/ + </example> + </note> </summary> - <seealso><directive - module="core">UseCanonicalName</directive></seealso> - <seealso><a href="../vhosts/mass.html">Dynamically configured mass -virtual hosting</a></seealso> + +<seealso><directive module="core">UseCanonicalName</directive></seealso> +<seealso><a href="../vhosts/mass.html">Dynamically configured mass + virtual hosting</a></seealso> <section id="interpol"> <title>Directory Name Interpolation</title> |