Hi, I've installed wpmu in the root directory of my website, but whenever somebody visits http://www.mysite.com they get given the default /main blog. How do I make it so that the front page goes to a seperate directory?
Hi, I've installed wpmu in the root directory of my website, but whenever somebody visits http://www.mysite.com they get given the default /main blog. How do I make it so that the front page goes to a seperate directory?
There are two ways to fix this problem.
1) edit your .htaccess file and change the line that redirects to the main blog. Put in it's place any file you wish.
2) What a lot of people have done is to actually make the main blog into their site. In other words create a template for the main blog and use that as your site. People have just disabled registrations and use the blog features as a way to post news.
Good luck,
Andrew
So basicly I just have to work out which line does what in the htaccess file then.
I ended up changing RewriteRule ^$ /wp-inst/index.php [L]
to
RewriteRule ^$ /home.php [L]
and adding the following two lines
RewriteRule ^([_0-9a-z-]+)/index.php(.*) /wp-inst/index.php [L]
RewriteRule ^([_0-9a-z-]+)/(.*) /wp-inst/index.php [L]
and it appears to have worked.