]> granicus.if.org Git - apache/commitdiff
Fix typos.
authorRalf S. Engelschall <rse@apache.org>
Thu, 10 Feb 2000 16:24:26 +0000 (16:24 +0000)
committerRalf S. Engelschall <rse@apache.org>
Thu, 10 Feb 2000 16:24:26 +0000 (16:24 +0000)
Submitted by: Howard Jones <howie@thingy.com>
PR: 5733

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

docs/manual/misc/rewriteguide.html

index b9c10e2aaccdab81f553890c68b81fd7a3cc88a9..7804158498e44c8c7a012b4bb12493c4cac95295 100644 (file)
@@ -1378,7 +1378,7 @@ RewriteRule    ^foo\.<b>html</b>$  foo.<b>cgi</b>  [T=<b>application/x-httpd-cgi
 <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 @@ This is done via the following ruleset:
 
 <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>