I'm trying to exclude all files starting with "dgg-" and ending in ".xml", example: dgg-file-1.xml from using the apache proxy.
This works:
ProxyPass /myfile.xml ! # single file
ProxyPass /directory ! # all files inside dir
This doesn't work:
ProxyPass /dgg-(.*)\.xml !
How can I achieve this ?
ps- I'm using this code inside the httpd.conf->virtualhost
not .htaccess
.
Use ProxyPassMatch
. ProxyPass
expects fully written path elements, it does not accept regexes.
As ProxyPassMatch
takes a regex, this means you must also anchor it:
ProxyPassMatch ^/dgg-[^.]+\.xml$ !
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With