From: Daniel Gruno Date: Mon, 16 Apr 2012 19:39:26 +0000 (+0000) Subject: xforms X-Git-Tag: 2.5.0-alpha~7151 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=632c44bc9c492288d65ae2ca4a75d3c9a6eee9ac;p=thirdparty%2Fapache%2Fhttpd.git xforms git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1326769 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_alias.html.en b/docs/manual/mod/mod_alias.html.en index 1192e5a7a5a..e594d3e254e 100644 --- a/docs/manual/mod/mod_alias.html.en +++ b/docs/manual/mod/mod_alias.html.en @@ -119,9 +119,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:

@@ -135,14 +135,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 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 @@ -524,7 +524,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