How to set a home subpage as default homepage

Feed 5 posts, 4 voices

Avatar
0 posts

Hi.
I’m trying to set a page as the default homepage. I want that http://mydomain.com points to http://mydomain.com/subpage.html without a redirection. Is there any way to change the default homepage?
Thanks

 
Avatar
343 posts

As far as I know, you cannot change the default home page without a redirection. But I’ll check it out.

 
Avatar
76 posts

It looks like you’re using htaccess with mod_rewrite already; so what you should be able to is this:

RewriteRule ^$ index.php?PAGE=subpage [L,QSA]

Place it in your .htaccess file before the existing Frog CMS definitions.

It will not change the actual URL in the address bar to subpage.htm (you can’t without a redirect) but it will load the subpage.html page.

 
Avatar
536 posts

or in your home page use

<?php header('Location: subpage.html'); exit; ?>