How can I configure Tomcat that http://hostname:5555/ can be redirected to http://hostname:8080/somepath
Thanks
How can I configure Tomcat that http://hostname:5555/ can be redirected to http://hostname:8080/somepath
Thanks
If you have Apache in front of your Tomcat instance, you can do this using Apache's proxy support. A typical solution might look like this:
<Location /somepath/>
ProxyPass http://localhost:5555/
ProxyPassReverse http://localhost:5555/
</Location>
You'll find more information in the Apache and Tomcat documentation, and a quick visit to Google will turn up lots of useful results.