[xwiki-users] How to redirect to the wiki
Hi, 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. I've checked through the spotty Jetty documentation and haven't found anything. Has anyone here done this? Thanks! --Bill
Hi Bill I use a html redirect tag in index.html. The best way is to tweak the web server config file but I don't know if it is possible with Jetty. ________________________________ From: [email protected] [mailto:[email protected]] On Behalf Of Bill Anderson Sent: October 4, 2007 6:42 PM To: [email protected] Subject: [xwiki-users] How to redirect to the wiki Hi, 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. I've checked through the spotty Jetty documentation and haven't found anything. Has anyone here done this? Thanks! --Bill
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
participants (3)
-
Bill Anderson -
G.Schoepp -
Lijour, Marc (EDU)