5 Oct
2007
5 Oct
'07
6:45 a.m.
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