|
Apache HTTP Server Version 1.3Module mod_alias
This module is contained in the DirectivesAlias directive
Syntax: Alias url-path directory-filename The Alias directive allows documents to be stored in the local filesystem other than under the DocumentRoot. URLs with a (%-decoded) path beginning with url-path will be mapped to local files beginning with directory-filename. Example:
A request for http://myserver/image/foo.gif would cause the server to return the file /ftp/pub/image/foo.gif.
Note that if you include a trailing / on the url-path then the
server will require a trailing / in order to expand the alias. That is,
if you use
Note that you may need to specify additional
See also ScriptAlias. AliasMatch
Syntax: AliasMatch regex directory-filename This directive is equivalent to Alias, but
makes use of standard regular expressions, instead of simple prefix
matching. The supplied regular expression is matched against the URL,
and if it matches, the server will substitute any parenthesized
matches into the given string and use it as a filename. For example,
to activate the AliasMatch ^/icons(.*) /usr/local/apache/icons$1 Redirect directive
Syntax: Redirect [ status ]
url-path url The Redirect directive maps an old URL into a new one. The new URL is returned to the client which attempts to fetch it again with the new address. Url-path a (%-decoded) path; any requests for documents beginning with this path will be returned a redirect error to a new (%-encoded) url beginning with url. Example:
If the client requests http://myserver/service/foo.txt, it will be told to access http://foo2.bar.com/service/foo.txt instead. Note: Redirect directives take precedence over Alias and ScriptAlias directives, irrespective of their ordering in the configuration file. Also, Url-path must be an absolute path, not a relative path, even when used with .htaccess files or inside of <Directory> sections. If no status argument is given, the redirect will be "temporary" (HTTP status 302). This indicates to the client that the resources is has moved temporarily. The status argument can be used to return other HTTP status codes:
Other status codes can be returned by giving the numeric status code
as the value of status. If the status is between 300 and 399,
the url argument must be present, otherwise it must be
omitted. Note that the status must be known to the Apache code (see
the function RedirectMatch
Syntax: RedirectMatch [status regex url
This directive is equivalent to Redirect, but makes use of standard regular expressions, instead of simple prefix matching. The supplied regular expression is matched against the URL, and if it matches, the server will substitute any parenthesized matches into the given string and use it as a filename. For example, to redirect all GIF files to like-named JPEG files on another server, one might use: RedirectMatch (.*)\.gif$ http://www.anotherserver.com$1.jpg RedirectTemp directive
Syntax: RedirectTemp url-path url
This directive makes the client know that the Redirect is only
temporary (status 302). Exactly equivalent to RedirectPermanent directive
Syntax: RedirectPermanent url-path url
This directive makes the client know that the Redirect is permanent
(status 301). Exactly equivalent to ScriptAlias directive
Syntax: ScriptAlias url-path directory-filename
The ScriptAlias directive has the same behavior as the Alias directive, except that in addition it marks the target directory as containing CGI scripts. URLs with a (%-decoded) path beginning with url-path will be mapped to scripts beginning with directory-filename. Example:
A request for http://myserver/cgi-bin/foo would cause the server to run the script /web/cgi-bin/foo. ScriptAliasMatch
Syntax: ScriptAliasMatch
regex directory-filename This directive is equivalent to ScriptAlias, but
makes use of standard regular expressions, instead of simple prefix
matching. The supplied regular expression is matched against the URL,
and if it matches, the server will substitute any parenthesized
matches into the given string and use it as a filename. For example,
to activate the standard ScriptAliasMatch ^/cgi-bin(.*) /usr/local/apache/cgi-bin$1 Apache HTTP Server Version 1.3 |
|||||||||||||||||
With any suggestions or questions please feel free to contact us |