]> git.pld-linux.org Git - packages/apache.git/blame - apache-mod_alias.conf
- trigger sysconfig/httpd to use new apache.conf location
[packages/apache.git] / apache-mod_alias.conf
CommitLineData
86dece47
ER
1# $Id$
2LoadModule alias_module modules/mod_alias.so
3
4<IfModule alias_module>
5 #
6 # Redirect: Allows you to tell clients about documents that used to
7 # exist in your server's namespace, but do not anymore. The client
8 # will make a new request for the document at its new location.
9 # Example:
10 # Redirect permanent /foo http://www.example.com/bar
11
12 #
13 # Alias: Maps web paths into filesystem paths and is used to
14 # access content that does not live under the DocumentRoot.
15 # Example:
16 # Alias /webpath /full/filesystem/path
17 #
18 # If you include a trailing / on /webpath then the server will
19 # require it to be present in the URL. You will also likely
20 # need to provide a <Directory> section to allow access to
21 # the filesystem path.
22
23 #
24 # ScriptAlias: This controls which directories contain server scripts.
25 # ScriptAliases are essentially the same as Aliases, except that
26 # documents in the target directory are treated as applications and
27 # run by the server when requested rather than as documents sent to the
28 # client. The same rules about trailing "/" apply to ScriptAlias
29 # directives as to Alias.
30 #
31 ScriptAlias /cgi-bin/ "/home/services/httpd/cgi-bin/"
32
33</IfModule>
This page took 0.035274 seconds and 4 git commands to generate.