Fix incorrect example. (Missing slash)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1084728 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rich Bowen
2011-03-23 20:40:41 +00:00
parent 30fa792204
commit 1a898ced0a
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ ProxyPassReverse /products/widget/ http://product.example.com/widget/
<div class="example"><p><code>
RewriteCond %{REQUEST_FILENAME} <strong>!-f</strong><br />
RewriteCond %{REQUEST_FILENAME} <strong>!-d</strong><br />
RewriteRule ^/(.*) http://<strong>old</strong>.example.com$1 [<strong>P</strong>]<br />
RewriteRule ^/(.*) http://<strong>old</strong>.example.com/$1 [<strong>P</strong>]<br />
ProxyPassReverse / http://old.example.com/
</code></p></div>
</dd>

View File

@ -80,7 +80,7 @@ ProxyPassReverse /products/widget/ http://product.example.com/widget/
<example>
RewriteCond %{REQUEST_FILENAME} <strong>!-f</strong><br />
RewriteCond %{REQUEST_FILENAME} <strong>!-d</strong><br />
RewriteRule ^/(.*) http://<strong>old</strong>.example.com$1 [<strong>P</strong>]<br />
RewriteRule ^/(.*) http://<strong>old</strong>.example.com/$1 [<strong>P</strong>]<br />
ProxyPassReverse / http://old.example.com/
</example>
</dd>