configuring ProxyPass on .htaccess to show tomcat through apache http server
snippet in htaccess
configuring ProxyPass on .htaccess to show tomcat through apache http server
user5666
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule tomcat/ http://127.0.0.1:8080/ [P]
</IfModule>