Hello all,
I've got the following problem
By default, url for main (and only, for now) blog was http://something.com, and it all worked well like that. But I need to have url fr blog with 'www' part infront, to integrate with the rest of the site. After changing blog's url to http://www.something.com, all I got was "Couldn't find blog" Errors.
I noticed it seems that it's hardcoded in wp_settings.php to strip 'www.' part from the domain name, making it impossible to find any blog with 'www.' in url?
I tried commenting out this two lines, and that worked partially, since now I get home page for blog (no errors), but no posts are visible on it, I just get home page as it was no posts at all (and ofcourse I doublechecked DB, and they're sitting there). However, I don't like this type of hacks, I'd rather try to solve this some other way. Just I've got no idea how?
The other strange thing are these 2 .htaccess lines:
RewriteCond %{HTTP_http://www.mysite.com} ^www\.(.*)
RewriteRule ^(.*) http://%1/$1 [R,L]
is this supposed to be like this?
I used RewriteLog to debug what's going on and it seems these lines never match anything (and I believe they should, since url of the page was http://www.mysite.com).
I'm totally new with wordpressMU, so any suggestion will be of great help to me..
thanx,
ivan