I'm trying to do some proxy work on my apache 2 server. I have requests for a couple of asp files that need to be proxied to another server. Therefore I'm trying to use ProxyMatch to match only the files with the ".asp" extension.
Here's what I have so far (and it doesn't seem to work):
<ProxyMatch "\.[aA][sS][pP]$">
Order deny,allow
Allow from all
ProxyPass http://aspwebserver/
ProxyPassReverse http://aspwebserver/
</ProxyMatch>
Anyone have any ideas/suggestions? If there is a better way of doing this I'm very open to trying a different route.
Thanks,
DK