Author: covener
Date: Fri Jul 15 22:53:18 2011
New Revision: 1147342
URL: http://svn.apache.org/viewvc?rev=1147342&view=rev
Log:
zap another "myserver" hostname
Modified:
httpd/httpd/branches/2.2.x/docs/manual/mod/mod_alias.xml
Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/mod_alias.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/mod_alias.xml?rev=1147342&r1=1147341&r2=1147342&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/mod_alias.xml (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/mod_alias.xml Fri Jul 15 22:53:18 2011
@@ -114,10 +114,10 @@ href="../urlmapping.html">Mapping URLs t
Alias /image /ftp/pub/image
</example>
- <p>A request for <code>http://myserver/image/foo.gif</code> would cause
+ <p>A request for <code>http://example.com/image/foo.gif</code> would
cause
the server to return the file <code>/ftp/pub/image/foo.gif</code>. Only
complete path segments are matched, so the above alias would not match a
- request for <code>http://myserver/imagefoo.gif</code>. For more complex
+ request for <code>http://example.com/imagefoo.gif</code>. For more complex
matching using regular expressions, see the <directive
module="mod_alias">AliasMatch</directive> directive.</p>
@@ -415,7 +415,7 @@ target as a CGI script</description>
ScriptAlias /cgi-bin/ /web/cgi-bin/
</example>
- <p>A request for <code>http://myserver/cgi-bin/foo</code> would cause
the
+ <p>A request for <code>http://example.com/cgi-bin/foo</code> would
cause the
server to run the script <code>/web/cgi-bin/foo</code>. This configuration
is essentially equivalent to:</p>
<example>
|