I'm looking to exclude a directory from a site is behind a reverse proxy.
examples I'm seeing are using ! , but I haven't been able to solve this
See examples that I've tried below.
Legacy system using mod_proxy module located in httpd.conf (just how it was setup before I took it over)
Examples:
1st test:
ProxyPass /site/test ! http://prod-test.azurewebsites.net/site
ProxyPassReverse /site/test ! http://prod-test.azurewebsites.net/site
2nd test:
ProxyPass /site/test !
ProxyPass /site/test ! http://prod-test.azurewebsites.net/site
Any suggestions would be helpful