]> granicus.if.org Git - apache/commitdiff
Correct missing keyword on ScriptAliasMatch example.
authorKen Coar <coar@apache.org>
Sun, 7 Dec 1997 23:03:45 +0000 (23:03 +0000)
committerKen Coar <coar@apache.org>
Sun, 7 Dec 1997 23:03:45 +0000 (23:03 +0000)
PR: 1512
Submitted by: Ronnie Brunner <brunner@netcetera.ch>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79677 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_alias.html

index 7954c8e49287d35f06323cea576de3b172988cc4..cb66b64798425b952158c35fc63c21edda58c8b1 100644 (file)
@@ -248,7 +248,7 @@ 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 <code>/cgi-bin</code>, one might use:
 <pre>
-    ScriptAlias ^/cgi-bin(.*) /usr/local/apache/cgi-bin$1
+    ScriptAliasMatch ^/cgi-bin(.*) /usr/local/apache/cgi-bin$1
 </pre>
 </p>