]> granicus.if.org Git - apache/commitdiff
PR45806 Fixed break tags. Submitted by poirier pobox.com
authorVincent Bray <noodl@apache.org>
Wed, 17 Sep 2008 14:19:43 +0000 (14:19 +0000)
committerVincent Bray <noodl@apache.org>
Wed, 17 Sep 2008 14:19:43 +0000 (14:19 +0000)
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
docs/manual/rewrite/rewrite_flags.xml

index 7972d7dfc21c8779df7b1d2fed254e553d1bc9e9..a0a0ce7fb6050492d4942241298b5e8b09b02c06 100644 (file)
@@ -367,10 +367,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 />
@@ -393,7 +393,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 d7a63667c31ca692782357da3b6ecd906908f77e..334d60d3424cede9f852e0db13ac7c9ead7c1ef4 100644 (file)
@@ -384,10 +384,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 />
@@ -412,7 +412,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>