When you call my wordpress you type for instance http://www.mywp.com and then the program starts showing the latest blogs.
But now I want to have my programme to start with page 1,
like when calling http://www.mywp.com it should call http://www.mywp.com/?page_id=1
What to do ?
Regards
Mikael Boldt
GoutWeed
Member
Posted 6 years ago #
There are several different solutions.
Personally I use Static Frontpage from Semilogic: http://www.semiologic.com/software/static-front/
newbie guess: If the browser loads a index.htm file before index.php, then you could solve it with a redirect in index.htm:
´<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.mywp.dk/?page_id=1" );
?>´
If not, then you could move your blog to a subdir (/wp/) and have redirect in index.htm in root, like so:
´<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.mywp.dk/wp/?page_id=1" );
?>´