[xwiki-users] How to redirect to the wiki

G.Schoepp gus-xwiki at guxx.net
Fri Oct 5 08:45:52 CEST 2007


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


More information about the users mailing list