]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
PR45806 Fixed break tags. Submitted by poirier pobox.com
authorVincent Bray <noodl@apache.org>
Wed, 17 Sep 2008 14:24:57 +0000 (14:24 +0000)
committerVincent Bray <noodl@apache.org>
Wed, 17 Sep 2008 14:24:57 +0000 (14:24 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@696317 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/rewrite/rewrite_flags.html.en
docs/manual/rewrite/rewrite_flags.xml

index 7063cc573074c58030597a6669fee8d7c1a53595..7d211f6ef7cc3c37220e06f41bbe597c5b5f52df 100644 (file)
@@ -365,10 +365,10 @@ ruleset. In the following example, we only want to run the <code class="directiv
 doesn't correspond with an actual file.</p>
 
 <div class="example"><p><code>
-# Is the request for a non-existent file?
+# Is the request for a non-existent file?<br />
 RewriteCond %{REQUEST_FILENAME} !-f<br />
 RewriteCond %{REQUEST_FILENAME} !-d<br />
-# If so, skip these two RewriteRules
+# If so, skip these two RewriteRules<br />
 RewriteRule .? - [S=2]<br />
 <br />
 RewriteRule (.*\.gif) images.php?$1<br />
@@ -391,7 +391,7 @@ sent. This has the same effect as the <code class="directive"><a href="../mod/mo
 source code as plain text, if requested in a particular way:</p>
 
 <div class="example"><p><code>
-# Serve .pl files as plain text
+# Serve .pl files as plain text<br />
 RewriteRule \.pl$ - [T=text/plain]
 </code></p></div>
 
index 9befdede1be0690bbaa41c1d268af8c10bdd96b2..8c7bcd36b1307c139420406a9ce90c7628d78779 100644 (file)
@@ -380,10 +380,10 @@ module="mod_rewrite">RewriteRule</directive> if the requested URI
 doesn't correspond with an actual file.</p>
 
 <example>
-# Is the request for a non-existent file?
+# Is the request for a non-existent file?<br />
 RewriteCond %{REQUEST_FILENAME} !-f<br />
 RewriteCond %{REQUEST_FILENAME} !-d<br />
-# If so, skip these two RewriteRules
+# If so, skip these two RewriteRules<br />
 RewriteRule .? - [S=2]<br />
 <br />
 RewriteRule (.*\.gif) images.php?$1<br />
@@ -408,7 +408,7 @@ module="mod_mime">AddType</directive> directive.</p>
 source code as plain text, if requested in a particular way:</p>
 
 <example>
-# Serve .pl files as plain text
+# Serve .pl files as plain text<br />
 RewriteRule \.pl$ - [T=text/plain]
 </example>