I am using IBM's IHS Webserver built on top of Apache Web server Version 2.2.4.
My requirement is to proxy pass a various Context path using regular expression in match.
I tried using ProxyPassMatch
but I get below error
ERROR: "Invalid ProxyPass|ProxyPassMatch parameter. Parameter must be in the form 'key=value'"
<LocationMatch "^/(ae/en|ar/en|ar/es|at/en|au/en|be/en|br/en)/">
Order Allow,Deny
Allow from all
ProxyPass http://www.xyz.com.au:80/au/en/ #(should keep varying as per the regex matched in location match )
ProxyReverse http://www.xyz.com.au:80/au/en/ #(should keep varying as per the regex matched in location match )
</LocationMatch>
Kindly advice how this can be achieved.
Regards Sridhar