From: Vincent Bray Date: Wed, 17 Sep 2008 14:24:57 +0000 (+0000) Subject: PR45806 Fixed break tags. Submitted by poirier pobox.com X-Git-Tag: 2.2.10~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d5a3d92d8e113afee176d652cd4af6378c1473ea;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/branches/2.2.x@696317 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/rewrite/rewrite_flags.html.en b/docs/manual/rewrite/rewrite_flags.html.en index 7063cc57307..7d211f6ef7c 100644 --- a/docs/manual/rewrite/rewrite_flags.html.en +++ b/docs/manual/rewrite/rewrite_flags.html.en @@ -365,10 +365,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
@@ -391,7 +391,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 9befdede1be..8c7bcd36b13 100644 --- a/docs/manual/rewrite/rewrite_flags.xml +++ b/docs/manual/rewrite/rewrite_flags.xml @@ -380,10 +380,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
@@ -408,7 +408,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]