Forum Moderators: coopster
Which is main domain. do you have any idea why can be difference?
[edited by: engine at 3:38 pm (utc) on Dec. 3, 2008]
[edit reason] please use example.com [/edit]
Most servers are set up so that the www.mydomain.si and mydomain.si are the same thing. However that may not be the set up with your server. Use htaccess to force people to go to the site you want them to see.
RewriteCond %{HTTP_HOST} ^example\.com
RewriteRule ^(.*)$ http://www.example.com/$1 [R=permanent,L]
will work. Of course you can find more info here in webmasterworld under the Apache section
[edited by: dreamcatcher at 1:33 am (utc) on Dec. 12, 2008]
[edit reason] use example.com. Thanks. [/edit]