From: Daniel Gruno Date: Wed, 25 Apr 2012 14:57:32 +0000 (+0000) Subject: Formatting error, sorry. X-Git-Tag: 2.5.0-alpha~7024 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=18cbb56863d9e59cdd737368ccac72f8285e16cb;p=apache Formatting error, sorry. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1330324 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/rewrite/remapping.html.en b/docs/manual/rewrite/remapping.html.en index 485b3b023f..c32ba0c9d3 100644 --- a/docs/manual/rewrite/remapping.html.en +++ b/docs/manual/rewrite/remapping.html.en @@ -148,18 +148,18 @@ RewriteRule ^/foo\.html$ bar.html [ -
With mod_rewrite
+
#With mod_rewrite
 RewriteEngine on
 RewriteRule   ^/docs/(.+)  http://new.example.com/docs/$1  [R,L]
 
-
With RedirectMatch
+
#With RedirectMatch
 RedirectMatch ^/docs/(.*) http://new.example.com/docs/$1
 
-
With Redirect
+
#With Redirect
 Redirect /docs/ http://new.example.com/docs/
 
diff --git a/docs/manual/rewrite/remapping.xml b/docs/manual/rewrite/remapping.xml index 3f615d38eb..6b3990487d 100644 --- a/docs/manual/rewrite/remapping.xml +++ b/docs/manual/rewrite/remapping.xml @@ -143,16 +143,16 @@ RewriteRule ^/foo\.html$ bar.html [ -With mod_rewrite +#With mod_rewrite RewriteEngine on RewriteRule ^/docs/(.+) http://new.example.com/docs/$1 [R,L] -With RedirectMatch +#With RedirectMatch RedirectMatch ^/docs/(.*) http://new.example.com/docs/$1 -With Redirect +#With Redirect Redirect /docs/ http://new.example.com/docs/