I'm trying to forward an URL to another server using Apache. I created a virtual host in the httpd.conf. It's not working when I try to access ipServeur/test. I can't access the page.
What is wrong?
NameVirtualHost *:80
<VirtualHost *:80>
ServerName ipServeur
ProxyRequests off
ProxyPass /test http://ipOtherServeur:8080
ProxyPassReverse /test http://ipOtherServeur:8080
</VirtualHost>