Question
I'm running Dakar on FC4. The start page (from apache DocRoot) is $TWikihome/ In that directory is the index.html that comes with the TWiki install. I've added a link to point to the actually TWiki (
http://mycompany/twiki/bin/view/Main/WebHome
). The question is, how can I have the root URL (
http://mycompany.com
) point directly to the TWiki?
Environment
--
AdamCoven - 05 Apr 2006
Answer
If you answer a question - or someone answered one of your questions - please remember to edit the page and set the status to answered. The status selector is below the edit box.
you can create an
index.html and use
META REFRESH
to redirect to a specific or use
mod_rewrite
(and here's a handy
mod_rewrite cheat sheet
)
--
WillNorris - 06 Apr 2006
Thanks the Meta worked perfectly. In the index.html file I used:
<META HTTP-EQUIV=Refresh CONTENT="3; URL=http://mycompany.com/twiki/bin/view/Main">
--
AdamCoven - 10 Apr 2006