My config is easy : 2 Apache Servers
- Server 1 : 'IP1' with domain (test.com)
- Server 2 : 'IP2' without domain
In the file httpd.conf of my server 1, i would like to access :
- to the tomcat installed on server 1 with the url : test.com
- to the apache of server 2, which has virtualhost, with the url : test.com/server2
Httpd.conf / Server 1
RewriteRule ^/server2$ http://'IP2'/web/test.php/ [L]
ProxyPass / ajp://'IP1':PORT/ retry=5
It works, but the second URL doesn't display test.com/server2 but http://'IP2'/web/test.php/. How to resolve this ?