From: Ralf S. Engelschall Date: Thu, 10 Feb 2000 16:24:26 +0000 (+0000) Subject: Fix typos. X-Git-Tag: 1.3.12~33 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7b31a3100175bb30b1dafc7272586b75548df95f;p=apache Fix typos. Submitted by: Howard Jones PR: 5733 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84599 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/misc/rewriteguide.html b/docs/manual/misc/rewriteguide.html index b9c10e2aac..7804158498 100644 --- a/docs/manual/misc/rewriteguide.html +++ b/docs/manual/misc/rewriteguide.html @@ -1378,7 +1378,7 @@ RewriteRule ^foo\.html$ foo.cgi [T=application/x-httpd-cgi
Description:
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:

 RewriteCond %{REQUEST_FILENAME}   !-s
-RewriteCond ^page\.html$          page.cgi   [T=application/x-httpd-cgi,L]
+RewriteRule ^page\.html$          page.cgi   [T=application/x-httpd-cgi,L]