git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93088
13f79535-47bb-0310-9956-
ffa450edef68
The ! directive is usefull in situations where you don't want to reverse-proxy
a subdirectory. eg.
<PRE>
- ProxyPass /mirror/foo http://foo.com
ProxyPass /mirror/foo/i !
+ ProxyPass /mirror/foo http://foo.com
</PRE>
will proxy all requests to /mirror/foo to foo.com EXCEPT requests made to /mirror/foo/i
+<b>NB: order is important. you need to put the exclusions BEFORE the general proxypass directive</b>
</P>
<HR>