web.xml
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
index.jsp:
<%@ page session="false" contentType="text/xml;charset=utf-8"%>
<%
response.sendRedirect("welcome.jsf");
%>
When I deployed on tomcat I get a blank page when I type in the context.
If I actually type in welcome.jsf it works fine.
For some reason it's not sending the redirect.
In JBoss it works fine.
Do I need to add something to my web.xml or configure Tomcat differently?
Any help?

