You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rs...@hyperreal.org on 2000/02/10 17:24:30 UTC

cvs commit: apache-1.3/htdocs/manual/misc rewriteguide.html

rse         00/02/10 08:24:28

  Modified:    htdocs/manual/misc rewriteguide.html
  Log:
  Fix typos.
  
  Submitted by: Howard Jones <ho...@thingy.com>
  PR: 5733
  
  Revision  Changes    Path
  1.2       +2 -2      apache-1.3/htdocs/manual/misc/rewriteguide.html
  
  Index: rewriteguide.html
  ===================================================================
  RCS file: /home/cvs/apache-1.3/htdocs/manual/misc/rewriteguide.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- rewriteguide.html	2000/01/08 14:50:14	1.1
  +++ rewriteguide.html	2000/02/10 16:24:26	1.2
  @@ -1378,7 +1378,7 @@
   <DT><STRONG>Description:</STRONG>
   <DD>
   Here comes a really esoteric feature: Dynamically generated but statically
  -served pages, i.e. pages should be delivered as pur static pages (read from
  +served pages, i.e. pages should be delivered as pure static pages (read from
   the filesystem and just passed through), but they have to be generated
   dynamically by the webserver if missing. This way you can have CGI-generated
   pages which are statically unless one (or a cronjob) removes the static
  @@ -1391,7 +1391,7 @@
   
   <P><TABLE BGCOLOR="#E0E5F5" BORDER="0" CELLSPACING="0" CELLPADDING="5"><TR><TD><PRE>
   RewriteCond %{REQUEST_FILENAME}   <b>!-s</b>
  -RewriteCond ^page\.<b>html</b>$          page.<b>cgi</b>   [T=application/x-httpd-cgi,L]
  +RewriteRule ^page\.<b>html</b>$          page.<b>cgi</b>   [T=application/x-httpd-cgi,L]
   </PRE></TD></TR></TABLE>
   
   <P>