I am trying to configure reverse proxy for one application. Am using apache 2.2 web server below are my configuration rules
ProxyRequests off
ProxyPreserveHost on
ProxyPass /app/ (http://11.11.111.11:123/)
ProxyPassReverse /app/ http://11.11.111.11:123/
Problem: When i hit the url of my local server like myserver.co.in/app/ first page is coming (application log in page). after that application is redirecting to url myserver.co.in/home/index.html and redirection failed. since "/app/" part is missing in the url.
Can any one help me to fix this issue. thanks in advance.
/appwhere necessary to the URLs it generates