
When we visit a blogger blog as yoursite.blogspot.com, blogger redirects us to to yoursite.blogspot.in if you are in India or yoursite.blogspot.uk if you are in the United Kingdom.
This is not so good in blogger's terms of view. Due to multiple tld s Google seo page rank will go down and other services like disqus will think that these are different websites.
To disable this country specific redirection,
Go to Blogger Dashboard and choose Template. Then click the “Edit HTML” button.
Then, copy-paste the following code into the template after the tag.
<script type="text/javascript">
var blog = document.location.hostname.split(".");
if (blog[blog.length - 1] != "com") {
var ncr = "http://" + blog[0] + ".blogspot.com/ncr";
window.location.replace(ncr + document.location.pathname);
}
</script>

Reviews:
Post a Comment