From bb164585410589cb7d2430b4c3296f0bdd6be01b Mon Sep 17 00:00:00 2001 From: Vincent Bray Date: Wed, 17 Sep 2008 14:19:43 +0000 Subject: [PATCH] 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 --- docs/manual/rewrite/rewrite_flags.html.en | 6 +++--- docs/manual/rewrite/rewrite_flags.xml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/manual/rewrite/rewrite_flags.html.en b/docs/manual/rewrite/rewrite_flags.html.en index 7972d7dfc2..a0a0ce7fb6 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 d7a63667c3..334d60d342 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]
-- 2.50.1