diff options
author | Ralf S. Engelschall <rse@apache.org> | 2000-02-10 17:24:26 +0100 |
---|---|---|
committer | Ralf S. Engelschall <rse@apache.org> | 2000-02-10 17:24:26 +0100 |
commit | 7b31a3100175bb30b1dafc7272586b75548df95f (patch) | |
tree | b3ccf723e0327102e11a2de3732a921d38e8db1a /docs | |
parent | Small changes to remove some compiler complaints. (diff) | |
download | apache2-7b31a3100175bb30b1dafc7272586b75548df95f.tar.xz apache2-7b31a3100175bb30b1dafc7272586b75548df95f.zip |
Fix typos.
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
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/misc/rewriteguide.html | 4 |
1 files changed, 2 insertions, 2 deletions
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\.<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> |