We want to change the context root of a Tomcat web appplication and have the old URL guide users to the newly named application.
http://hostname/oldappname
http://hostname/newappname
One way to do this would be deploy the application with a context root of newappname and another application with a context root of oldappname and have it guide users to the new URL.
This simple option is not open to us, internal company policy prevents the running of multiple applications in the same instance of Tomcat (not negotiable).
I remember GlassFish has the concept of an "Alternate document root" that could be used to give an application multiple context roots, any idea how to do this in Tomcat ?