Bill Anderson schrieb:
I'm using Jetty and trying to figgure out how to
redirect someone who
goes to
http://foo.com to
http://foo.com/xwiki/bin/view/Main/WebHome,
just like the
xwiki.org web site does.
Try to put this JSP page in the ROOT context:
<%
String redirectURL = "/xwiki/bin/view/Main/WebHome";
response.sendRedirect(redirectURL);
%>
Guido