Eric In my config file i am using only one virtual host i.e is the below one . My objective is to use without /kd context path so that on typing vicky.com it should get redirected to my to my tomcat application. I tried using the same configuration without /kd context root( only using / slash) in that case page cannot be displayed error comes. Because of which i m forced to used the url vicky.com/kd for accessing tomcat app. Kindly suggest how to resolve this <VirtualHost *:80> ServerName vicky.com ProxyPass /kd http://localhost:8080/kdah ProxyPassReverse /kd http://localhost:8080/kdah ErrorLog logs/vicky_error.log </VirtualHost> Thanks, Vicky Begin forwarded message:
<VirtualHost *:80>ServerName vicky.comProxyPass /kd http://localhost:8080/kdahProxyPassReverse /kd http://localhost:8080/kdahErrorLog logs/vicky_error.log</VirtualHost> |