Commit 20f0b304 authored by Christophe Jaillet's avatar Christophe Jaillet
Browse files

Fix a typo in an example (missing ")

The typo is already fixed in trunk

+ synch a bit with trunk (tab vs space, trailing space)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1777005 13f79535-47bb-0310-9956-ffa450edef68
parent 430e495f
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -192,7 +192,7 @@ Redirect "/docs/" "http://new.example.com/docs/"
<highlight language="config">
RewriteEngine  on
RewriteBase    "/~quux/"
RewriteRule    "^foo\.html$"  "foo.cgi" &nbsp; [H=<strong>cgi-script</strong>]
RewriteRule    "^foo\.html$"  "foo.cgi"  [H=<strong>cgi-script</strong>]
</highlight>
    </dd>
  </dl>
@@ -321,7 +321,7 @@ you might use one of the recipes below.</p>
RewriteCond "%{HTTP_HOST}"   "!^www\.example\.com" [NC]
RewriteCond "%{HTTP_HOST}"   "!^$"
RewriteCond "%{SERVER_PORT}" "!^80$"
RewriteRule "^/?(.*)         "http://www.example.com:%{SERVER_PORT}/$1" [L,R,NE]
RewriteRule "^/?(.*)"        "http://www.example.com:%{SERVER_PORT}/$1" [L,R,NE]
</highlight>

<p>And for a site running on port 80</p>