]> granicus.if.org Git - apache/commitdiff
standardize /
authorJim Jagielski <jim@apache.org>
Fri, 12 Feb 2016 12:15:37 +0000 (12:15 +0000)
committerJim Jagielski <jim@apache.org>
Fri, 12 Feb 2016 12:15:37 +0000 (12:15 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1730005 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/howto/reverse_proxy.xml

index edbb824ffad321ccc9270a17c570de4c4adb999e..5e1361290f43d83e698232e8ca9dca43f8523365 100644 (file)
@@ -80,7 +80,7 @@
     </p>
 
     <highlight language="config">
-ProxyPass "/"  "http://www.example.com"
+ProxyPass "/"  "http://www.example.com/"
     </highlight>
 
     <p>
@@ -91,15 +91,15 @@ ProxyPass "/"  "http://www.example.com"
     </p>
 
     <highlight language="config">
-ProxyPass "/"  "http://www.example.com"
-ProxyPassReverse "/"  "http://www.example.com"
+ProxyPass "/"  "http://www.example.com/"
+ProxyPassReverse "/"  "http://www.example.com/"
     </highlight>
 
     <p>Only specific URIs can be proxied, as shown in this example:</p>
 
     <highlight language="config">
-ProxyPass "/images"  "http://www.example.com"
-ProxyPassReverse "/images"  "http://www.example.com"
+ProxyPass "/images"  "http://www.example.com/"
+ProxyPassReverse "/images"  "http://www.example.com/"
     </highlight>
 
     <p>In the above, any requests which start with the <code>/images</code>
@@ -131,8 +131,8 @@ ProxyPassReverse "/images"  "http://www.example.com"
     ProxySet lbmethod=bytraffic
 &lt;/Proxy&gt;
 
-ProxyPass "/images"  "balancer://myset"
-ProxyPassReverse "/images"  "balancer://myset"
+ProxyPass "/images/"  "balancer://myset/"
+ProxyPassReverse "/images/"  "balancer://myset/"
     </highlight>
 
     <p>
@@ -172,8 +172,8 @@ ProxyPassReverse "/images"  "balancer://myset"
     ProxySet lbmethod=bytraffic
 &lt;/Proxy&gt;
 
-ProxyPass "/images"  "balancer://myset"
-ProxyPassReverse "/images"  "balancer://myset"
+ProxyPass "/images"  "balancer://myset/"
+ProxyPassReverse "/images"  "balancer://myset/"
     </highlight>
 
   </section>
@@ -202,8 +202,8 @@ ProxyPassReverse "/images"  "balancer://myset"
     ProxySet lbmethod=byrequests
 &lt;/Proxy&gt;
 
-ProxyPass "/images"  "balancer://myset"
-ProxyPassReverse "/images"  "balancer://myset"
+ProxyPass "/images/"  "balancer://myset/"
+ProxyPassReverse "/images/"  "balancer://myset/"
     </highlight>
 
     <p>