From: Ken Coar Date: Sun, 7 Dec 1997 23:03:45 +0000 (+0000) Subject: Correct missing keyword on ScriptAliasMatch example. X-Git-Tag: APACHE_1_3b5~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b64dc54a037dc787d2c61fd5569397ba95c3dd1;p=thirdparty%2Fapache%2Fhttpd.git Correct missing keyword on ScriptAliasMatch example. PR: 1512 Submitted by: Ronnie Brunner git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79677 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_alias.html b/docs/manual/mod/mod_alias.html index 7954c8e4928..cb66b647984 100644 --- a/docs/manual/mod/mod_alias.html +++ b/docs/manual/mod/mod_alias.html @@ -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 /cgi-bin, one might use:
-    ScriptAlias ^/cgi-bin(.*) /usr/local/apache/cgi-bin$1
+    ScriptAliasMatch ^/cgi-bin(.*) /usr/local/apache/cgi-bin$1