Startpage / Homepage

Permalink
Hello

How can i change the startpage/homepage?

I have set the option for the standard home link: "Exclude from Nav"

Now i would like to set my "news site" as first site. I can't find a option in C5. Must i do a redirection?

Thanks for help.

marius

marius
 
Mnkras replied on at Permalink Reply
Mnkras
there is no option that i know of i would do a redirection by doing i guess a single html block and using this code in it

<meta http-equiv="REFRESH" content="0;url=http://www.the-domain-you-want-to-redirect-to.com">
<BODY>
Optional page text here.
</BODY>
marius replied on at Permalink Reply
marius
The redirection with meta is not so good. The "back" function in the browser doesn't work, it's slow etc.

Other solution:
edit the index.php in the root of C5 and add:

if ($_SERVER['REQUEST_URI']=='/') {
header('Location: /news');
}


Any better solutions?

thanks