Hi all,
I am using reverse proxy in apache server.
I am running an application 'tst' on the machine 10.5.100.15 accessed by the URL
http://10.5.100.15:9080/tst
My apache server is installed at another machine 10.5.100.20 on port 80.
In httpd.conf I have written the following lines.
ProxyPass /abc http://10.5.100.15:9080/tst
ProxyPassReverse /abc http://10.5.100.15:9080/tst
Now, the problem is that when I access the URL http://10.5.100.20/abc
it gives me, page not found error.
The address which is displayed in the bar is
http://10.5.100.20/tst/disServlet?uAction=initial
which actually should be
http://10.5.100.20/abc/disServlet?uAction=initial
Please if anyone solve my problem...
Thanks in advance