To access my jsp's in tomcat, url is [u]http://locatlhost:port/appName/jsp/Logon.jsp</u>
but i don't want to see jsp in the above url without changing the name of the folder(jsp in appName.war) in war file.
Is there anyway i can specify in the web.xml saying all request starts with demo (for an example) to redirect / refer to jsp.
ie
if i type
http://locatlhost:port/appName/demo/Logon.jsp it should call internally
http://locatlhost:port/appName/jsp/Logon.jsp
Thanks in advance.
Ram :)