How to reverse on two conditions under an apache reverse proxy
I'm new on apache reverse proxy, and I trying to reverse Url calling like bellow: I'm able to forward all request on Webserver1 like that: <VirtualHost *:80> ProxyPreserveHost On ServerName localhost ProxyPass / http://webserver1/ ProxyPassReverse / http://webserver1/ </VirtualHost> But I'm…