Let's say I have a vhost with a DocumentRoot and ProxyPass to an application server. I want the proxy to only forward requests with an extension of .xyz and .abc, but everything else should default to the doc root. How can I achieve that?

link|improve this question
feedback

1 Answer

Use LocationMatch:

<LocationMatch \.xyz$>
  ProxyPass http://some.where/else
</Locationmatch>

NOTE that since you are already providing an exact location, ProxyPass no longer requires one.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.