I am not clear on the following:
If we have a web application named: SomeWebApp
under Tomcat's webapp
directory, the url to access it is:
http://localhost:8080/SomeWebApp
My question is, is it possible to configure Tomcat so that other URLs would point to that web application?
E.g.
http://localhost:8080/ADifferentApp
will also point to the SomeWebApp
?
From the web.xml
I think is not possible since it is about the url patterns when you are inside the SomeWebApp
scope.
So what is the proper way to do it? If it is possible that is.