开发者

What is the canonical url of my website with www or without?

For my site: http://www.indiacustomercare.com which one is the canonical url with www or without www? I'开发者_开发技巧ve not changed any settings. I remember that I changed this to www. in one for my previous drupal-6 website but I've forgotten it now(I did not change .htaccess).

So if I access my site as http://indiacustomercare.com then all pages seem to be without www ( except for those in the footer which are hardcoded with www...) Similarly for when I access my site as http://www.indiacustomercare.com all web pages seem to have www prefix.

So what is my site's default www or without www?


Yes, in Drupal .htaccess there are pre-defined settings for this. Go to line 90-97, choose which domain you want to use (with or without www), uncomment the appropriate lines and add there your domain.

RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]

This one redirects from example.com to www.example.com. There is also the opposite direction below.


You choose, but it's considered best practice to go with either one or the other, and not leave both available. If you set up a 301 Redirect, it is nicer for search engines.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜