On 10-Feb-10 16:23, stas@khirman.com wrote:
The configuration: MediaWiki 1.15.1 PHP 5.2.12 (cgi) MySQL 5.0.81-log Website www.wikivalley.com Clean installation with "Short URL" rewrite rules in .htaccess
The problem:
Apparently, every URL for non-defined article like http://www.wikivalley/com/wiki/SomePage redirected to http://wikivalley/com/wiki/SomePage (note omission of WWW prefix). Also http://www.wikivalley.com is redirected to http://wikivalley.com/wiki/Main_Page.
I put a workaround using rewrite rules, but every such request results in two back and force "301 Redirect" calls (+ about 1 second latency).
Did i missed something in configuration?
Any help is deeply appreciated!
I'm not exactly sure what the problem is? Is the only thing happening "wrong" that when your pages redirect it's simply omitting the "www." subdomain?
If so, (1) that shouldn't be an issue on a properly setup hosting account, and (2) the issue is probably in your RewriteConds/Rules.
You may have something looks similar to this:
RewriteCond ^www.wikivalley.com$ RewriteRule ^(.*)$ http://wikivalley.com/$1
Of course, without seeing the contents of .htaccess, it will be difficult to pinpoint the EXACT changes you need to make.