]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
fiw newlines
authorDaniel Gruno <humbedooh@apache.org>
Thu, 19 Jul 2012 15:14:14 +0000 (15:14 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Thu, 19 Jul 2012 15:14:14 +0000 (15:14 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1363373 13f79535-47bb-0310-9956-ffa450edef68

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

index 6fbf50ff21a39c408cdbc0e60ea9f01e81c9fa8e..33761d45fe4d13fbca882ef028f4d78d13e4e979 100644 (file)
@@ -601,13 +601,13 @@ to run the <code class="directive"><a href="../mod/mod_rewrite.html#rewriterule"
 requested URI doesn't correspond with an actual file.</p>
 
 <div class="example"><p><code>
-# Is the request for a non-existent file?
-RewriteCond %{REQUEST_FILENAME} !-f
-RewriteCond %{REQUEST_FILENAME} !-d
-# If so, skip these two RewriteRules
-RewriteRule .? - [S=2]
-RewriteRule (.*\.gif) images.php?$1
-RewriteRule (.*\.html) docs.php?$1
+# 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<br />
+RewriteRule .? - [S=2]<br />
+RewriteRule (.*\.gif) images.php?$1<br />
+RewriteRule (.*\.html) docs.php?$1<br />
 </code></p></div>
 
 <p>This technique is useful because a <code class="directive"><a href="../mod/mod_rewrite.html#rewritecond">RewriteCond</a></code> only applies to the
index e442b70d131178a5298c590f06ab89f9d14f3334..479a976be6f9d3cd74a91f1d179eecde2fdb3e70 100644 (file)
@@ -604,13 +604,13 @@ to run the <directive 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?
-RewriteCond %{REQUEST_FILENAME} !-f
-RewriteCond %{REQUEST_FILENAME} !-d
-# If so, skip these two RewriteRules
-RewriteRule .? - [S=2]
-RewriteRule (.*\.gif) images.php?$1
-RewriteRule (.*\.html) docs.php?$1
+# 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<br/>
+RewriteRule .? - [S=2]<br/>
+RewriteRule (.*\.gif) images.php?$1<br/>
+RewriteRule (.*\.html) docs.php?$1<br/>
 </example>
 
 <p>This technique is useful because a <directive