You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@hyperreal.org on 1997/12/08 00:03:46 UTC

cvs commit: apachen/htdocs/manual/mod mod_alias.html

coar        97/12/07 15:03:46

  Modified:    htdocs/manual/mod mod_alias.html
  Log:
  	Correct missing keyword on ScriptAliasMatch example.
  
  PR:		1512
  Submitted by:	Ronnie Brunner <br...@netcetera.ch>
  
  Revision  Changes    Path
  1.14      +1 -1      apachen/htdocs/manual/mod/mod_alias.html
  
  Index: mod_alias.html
  ===================================================================
  RCS file: /export/home/cvs/apachen/htdocs/manual/mod/mod_alias.html,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- mod_alias.html	1997/10/25 22:35:13	1.13
  +++ mod_alias.html	1997/12/07 23:03:45	1.14
  @@ -248,7 +248,7 @@
   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>