Hi experts, google is showing my website without www in google search results. Can anybody suggest me, what's the possible reason?? Thanks
Have you set how you want it displayed in google webmaster tools ... non-www or www ? Also if you want it to display as www. then you can also redirect non-www to www. using .htaccess?
you can use .htaccess with code below to redirect non-www to www RewriteCond %{HTTP_HOST} . RewriteCond %{HTTP_HOST} !^www\.example\.com [NC] RewriteRule (.*) http://www.example.com/$1 [R=301,L]
If you use worpress, it's simple to change your url setting. Just go to general setting and change it
set a account in google webmaster tool then change setting to cache with www or without www as u want.
I already register with webmasters and there i select Site configuration > Settings > Preferred domain : Display URLs as www.mysite.com but still it's not worth. Maybe in future, get updated with www
you will have to solved your 301 Redirection (Canonical Issue) for your Domain via .htaccess file. Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^example\.com RewriteRule ^(.*)$ http://www.example.com/$1 [R=permanent,L] via this code.
It's showing with www now, that too without any htaccess settings. I think it takes time to update in google. Thanks everyone for your precious time.