From: Vincent Bray
Date: Wed, 17 Sep 2008 14:19:43 +0000 (+0000)
Subject: PR45806 Fixed break tags. Submitted by poirier pobox.com
X-Git-Tag: 2.3.0~298
X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bb164585410589cb7d2430b4c3296f0bdd6be01b;p=thirdparty%2Fapache%2Fhttpd.git
PR45806 Fixed break tags. Submitted by poirier pobox.com
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@696313 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/rewrite/rewrite_flags.html.en b/docs/manual/rewrite/rewrite_flags.html.en
index 7972d7dfc21..a0a0ce7fb60 100644
--- a/docs/manual/rewrite/rewrite_flags.html.en
+++ b/docs/manual/rewrite/rewrite_flags.html.en
@@ -367,10 +367,10 @@ ruleset. In the following example, we only want to run the
-# Is the request for a non-existent file?
+# Is the request for a non-existent file?
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
-# If so, skip these two RewriteRules
+# If so, skip these two RewriteRules
RewriteRule .? - [S=2]
RewriteRule (.*\.gif) images.php?$1
@@ -393,7 +393,7 @@ sent. This has the same effect as the
-# Serve .pl files as plain text
+# Serve .pl files as plain text
RewriteRule \.pl$ - [T=text/plain]
diff --git a/docs/manual/rewrite/rewrite_flags.xml b/docs/manual/rewrite/rewrite_flags.xml
index d7a63667c31..334d60d3424 100644
--- a/docs/manual/rewrite/rewrite_flags.xml
+++ b/docs/manual/rewrite/rewrite_flags.xml
@@ -384,10 +384,10 @@ module="mod_rewrite">RewriteRule if the requested URI
doesn't correspond with an actual file.
-# Is the request for a non-existent file?
+# Is the request for a non-existent file?
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
-# If so, skip these two RewriteRules
+# If so, skip these two RewriteRules
RewriteRule .? - [S=2]
RewriteRule (.*\.gif) images.php?$1
@@ -412,7 +412,7 @@ module="mod_mime">AddType directive.
source code as plain text, if requested in a particular way:
-# Serve .pl files as plain text
+# Serve .pl files as plain text
RewriteRule \.pl$ - [T=text/plain]