You could use a servlet for that.
Create a servlet, map it in your web.xml to the name you want and then just implement a redirection to your page from within that servlet, using RequestDispatcher, for example.
Don't know how to do that using only JSP pages.
|