For example, in httpd.conf, the following configuration:
ProxyPass app http://somehost:someport/App_1 ProxyPassReverse app http://somehost:someport/App_1
Now I have to use absolute URLs to forward requests from "/ myapp" to "/ app":
<Location /myapp > ProxyPass http://localhost:8080/app ProxyPassReverse http://localhost:8080/app </Location>
Can a relative path be used in ProxyPass / ProxyPassReverse?
<Location /myapp > ProxyPass /app ProxyPassReverse /app </Location>
source share