I do not understand the following:
If we have a web application named: SomeWebApp in the Tomcat webapp directory, the URL to access it:
http://localhost:8080/SomeWebApp
My question is, is it possible to configure Tomcat so that other URLs point to this web application?
E.G.
http://localhost:8080/ADifferentApp will also point to SomeWebApp ?
From web.xml I think this is not possible, as far as url patterns are concerned when you are inside the SomeWebApp .
So what is the right way to do this? If possible, that is.
source share