From 06173edcf6a8c858b19f05ee8e5e48a8047565ec Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Wed, 18 Apr 2012 05:36:48 +0000 Subject: [PATCH] xforms git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1327383 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_alias.html.en | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/manual/mod/mod_alias.html.en b/docs/manual/mod/mod_alias.html.en index 85e2011ee56..310e0bd6627 100644 --- a/docs/manual/mod/mod_alias.html.en +++ b/docs/manual/mod/mod_alias.html.en @@ -70,13 +70,13 @@

See also

top

Order of Processing

-

Aliases and Redirects occuring in different contexts are processed +

Aliases and Redirects occurring in different contexts are processed like other directives according to standard merging rules. But when multiple Aliases or Redirects occur in the same context (for example, in the same <VirtualHost> @@ -118,9 +118,9 @@

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 + (%-decoded) path beginning with URL-path will be mapped to local files beginning with directory-path. The - url-path is case-sensitive, even on case-insensitive + URL-path is case-sensitive, even on case-insensitive file systems.

Example:

@@ -134,14 +134,14 @@ matching using regular expressions, see the AliasMatch directive.

Note that if you include a trailing / on the - url-path then the server will require a trailing / in + URL-path then the server will require a trailing / in order to expand the alias. That is, if you use

Alias /icons/ /usr/local/apache/icons/
-

then the url /icons will not be aliased, as it lacks +

then the URL /icons will not be aliased, as it lacks that trailing /. Likewise, if you omit the slash on the - url-path then you must also omit it from the + URL-path then you must also omit it from the file-path.

Note that you may need to specify additional <Directory> sections which @@ -195,7 +195,7 @@ expressions

The full range of regular expression power is available. For example, it is possible to construct an alias with case-insensitive - matching of the url-path:

+ matching of the URL-path:

AliasMatch (?i)^/image(.*) /ftp/pub/image$1 @@ -275,10 +275,10 @@ a different URL in which case the scheme and hostname of the current server will be added.

-

Then any request beginning with URL-Path will return a +

Then any request beginning with URL-path will return a redirect request to the client at the location of the target URL. Additional path information beyond the matched - URL-Path will be appended to the target URL.

+ URL-path will be appended to the target URL.

Example:

Redirect /service http://foo2.example.com/service @@ -490,7 +490,7 @@ and designates the target as a CGI script

As for AliasMatch, the full range of regular expression power is available. For example, it is possible to construct an alias with case-insensitive - matching of the url-path:

+ matching of the URL-path:

ScriptAliasMatch (?i)^/cgi-bin(.*) /usr/local/apache/cgi-bin$1 -- 2.47.2