]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix title issues
authorDaniel Gruno <humbedooh@apache.org>
Thu, 26 Apr 2012 14:35:38 +0000 (14:35 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Thu, 26 Apr 2012 14:35:38 +0000 (14:35 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1330874 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/rewrite/remapping.xml

index 6b3990487d339ea847ffebbab36bbc926c766c8f..948efd587b57ae7604a7873c6993c503318ce542 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">#With mod_rewrite
 RewriteEngine on
 RewriteRule   ^/docs/(.+)  http://new.example.com/docs/$1  [R,L]
 </highlight>
 
-<highlight language="config"><strong>#With RedirectMatch</strong>
+<highlight language="config">#With RedirectMatch
 RedirectMatch ^/docs/(.*) http://new.example.com/docs/$1
 </highlight>
 
-<highlight language="config"><strong>#With Redirect</strong>
+<highlight language="config">#With Redirect
 Redirect /docs/ http://new.example.com/docs/
 </highlight>
     </dd>