Try to put this JSP page in the ROOT context:
<%
String redirectURL = "/xwiki/bin/view/Main/WebHome";
response.sendRedirect(redirectURL);
%>
Guido
Thanks Guido and Marc,
I could never find the real "root" directory with Jetty, so I scrapped that,
installed Tomcat, put the index.jsp in the Tomcat root (Tomcat 6.0/webapps/ROOT) and it
worked perfectly. As an added benefit, it seems Tomcat is a lot faster than Jetty.
I appreciate it,
--Bill