0

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?

jiggy
  • 123
  • 4

1 Answers1

1

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.

adaptr
  • 16,576
  • 23
  • 34