]> granicus.if.org Git - apache/commitdiff
Formatting error, sorry.
authorDaniel Gruno <humbedooh@apache.org>
Wed, 25 Apr 2012 14:57:32 +0000 (14:57 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Wed, 25 Apr 2012 14:57:32 +0000 (14:57 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1330324 13f79535-47bb-0310-9956-ffa450edef68

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

index 485b3b023f06b4fd900584ed87c09893e9648d79..c32ba0c9d3129176fdf0d760cd75d5155994f51e 100644 (file)
@@ -148,18 +148,18 @@ RewriteRule    ^<strong>/foo</strong>\.html$  <strong>bar</strong>.html  [<stron
       to the new server, but you might also consider using the Redirect
       or RedirectMatch directive.</p>
 
-<pre class="prettyprint lang-config"><strong>With mod_rewrite</strong>
+<pre class="prettyprint lang-config"><strong>#With mod_rewrite</strong>
 RewriteEngine on
 RewriteRule   ^/docs/(.+)  http://new.example.com/docs/$1  [R,L]
 </pre>
 
 
-<pre class="prettyprint lang-config"><strong>With RedirectMatch</strong>
+<pre class="prettyprint lang-config"><strong>#With RedirectMatch</strong>
 RedirectMatch ^/docs/(.*) http://new.example.com/docs/$1
 </pre>
 
 
-<pre class="prettyprint lang-config"><strong>With Redirect</strong>
+<pre class="prettyprint lang-config"><strong>#With Redirect</strong>
 Redirect /docs/ http://new.example.com/docs/
 </pre>
 
index 3f615d38ebac065dd44474384fa692eb695990f3..6b3990487d339ea847ffebbab36bbc926c766c8f 100644 (file)
@@ -143,16 +143,16 @@ RewriteRule    ^<strong>/foo</strong>\.html$  <strong>bar</strong>.html  [<stron
       to the new server, but you might also consider using the Redirect
       or RedirectMatch directive.</p>
 
-<highlight language="config"><strong>With mod_rewrite</strong>
+<highlight language="config"><strong>#With mod_rewrite</strong>
 RewriteEngine on
 RewriteRule   ^/docs/(.+)  http://new.example.com/docs/$1  [R,L]
 </highlight>
 
-<highlight language="config"><strong>With RedirectMatch</strong>
+<highlight language="config"><strong>#With RedirectMatch</strong>
 RedirectMatch ^/docs/(.*) http://new.example.com/docs/$1
 </highlight>
 
-<highlight language="config"><strong>With Redirect</strong>
+<highlight language="config"><strong>#With Redirect</strong>
 Redirect /docs/ http://new.example.com/docs/
 </highlight>
     </dd>