You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by hu...@apache.org on 2012/04/16 21:39:16 UTC

svn commit: r1326767 - /httpd/httpd/trunk/docs/manual/mod/mod_alias.xml

Author: humbedooh
Date: Mon Apr 16 19:39:16 2012
New Revision: 1326767

URL: http://svn.apache.org/viewvc?rev=1326767&view=rev
Log:
Be consistent in the use of URL-path instead of url-path

Modified:
    httpd/httpd/trunk/docs/manual/mod/mod_alias.xml

Modified: httpd/httpd/trunk/docs/manual/mod/mod_alias.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_alias.xml?rev=1326767&r1=1326766&r2=1326767&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_alias.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_alias.xml Mon Apr 16 19:39:16 2012
@@ -105,9 +105,9 @@ href="../urlmapping.html">Mapping URLs t
     <p>The <directive>Alias</directive> directive allows documents to
     be stored in the local filesystem other than under the
     <directive module="core">DocumentRoot</directive>. URLs with a
-    (%-decoded) path beginning with <var>url-path</var> will be mapped
+    (%-decoded) path beginning with <var>URL-path</var> will be mapped
     to local files beginning with <var>directory-path</var>.  The
-    <var>url-path</var> is case-sensitive, even on case-insensitive
+    <var>URL-path</var> is case-sensitive, even on case-insensitive
     file systems.</p>
 
     <example><title>Example:</title>
@@ -122,14 +122,14 @@ href="../urlmapping.html">Mapping URLs t
     >AliasMatch</directive> directive.</p>
 
     <p>Note that if you include a trailing / on the
-    <var>url-path</var> then the server will require a trailing / in
+    <var>URL-path</var> then the server will require a trailing / in
     order to expand the alias. That is, if you use</p>
 
     <dl><dd><code>Alias /icons/ /usr/local/apache/icons/</code></dd></dl>
 
     <p>then the url <code>/icons</code> will not be aliased, as it lacks
     that trailing /. Likewise, if you omit the slash on the
-    <var>url-path</var> then you must also omit it from the
+    <var>URL-path</var> then you must also omit it from the
     <var>file-path</var>.</p>
 
     <p>Note that you may need to specify additional <directive
@@ -185,7 +185,7 @@ expressions</description>
     <p>The full range of <glossary ref="regex">regular expression</glossary>
     power is available.  For example,
     it is possible to construct an alias with case-insensitive
-    matching of the url-path:</p>
+    matching of the URL-path:</p>
 
     <example>
       AliasMatch (?i)^/image(.*) /ftp/pub/image$1
@@ -518,7 +518,7 @@ and designates the target as a CGI scrip
     <p>As for AliasMatch, the full range of <glossary ref="rexex">regular
     expression</glossary> power is available.
     For example, it is possible to construct an alias with case-insensitive
-    matching of the url-path:</p>
+    matching of the URL-path:</p>
 
     <example>
       ScriptAliasMatch (?i)^/cgi-bin(.*) /usr/local/apache/cgi-bin$1