i can visit at my website by clicking like www,http,.com & all urls is working.Google cached only one url ....can i redirect my all url to one url or it is fine .I read somewhere if google cached your all url differently than you can redirect otherwise it will be fine ..What can i do..
HI in my opinion that is the not best way you have add your urls any high domain authority website so that is the best way to Google Crawler easy way to all urls crawl...
Hi, You have to solve canonical problem through .htaccess file. Code: RewriteEngine On RewriteCond %{HTTP_HOST} !^www\.example\.com RewriteRule ^(.*) http://www.example.com/$1 [L,R=301] RewriteCond %{THE_REQUEST} ^.*/index.php RewriteRule ^(.*)index.php$ http://www.example.com/$1 [R=301,L] Code (markup): Put your URL in the place of example and put it at .htaccess file.
My question is that my home page of website is open in all formats of url ...can i redirect to only one format ....But i read if google isn't crawled all formats of url then it is ok to leave the redirection.....If google crawled all formats of url differently then must redirect the url ....301 redirect .... Suggest me..
I got you. My question is that my home page of website is open in all formats of url ...can i redirect to only one format ....But i read if google isn't crawled all formats of url then it is ok to leave the redirection.....If google crawled all formats of url differently then must redirect the url ....301 redirect .... Suggest me..
Yes, your site has canonical problem. If you do 301 redirect, your site does not have canonical problem.And Google understand that a unique site.
All the URl's must redirest to single Url otherwise search engines must be unsure URL is correct to index.
Here is a nice post about canonicalization. I usually refer people to it when they have question. But basically you can just redirect example.com to www.example.com, or the other way round - your choice.
Hey, Thanks for sharing that I've been going crazy the past few days trying to figure out how to redirect the www version of my site to the mysite.com version. Now I just have to implement and test.