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
_______________________________________________
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users

Reply via email to