, , , , , ,

Stop blogspot blog redirection to country specefic URL

Do you have a blogspot blog (abc.blogspot.com)? If so you have noticed that google redirects its URL to the country specefic domains. If you open your blog from Israel it will be (abc.blogspot.co.il) and if you open it from India it will be (abc.blogspot.co.in).

Google has advantages with this URL redirection as it can easily sensor your blog and ban it accordingly to the specefic country. But
URL redirection has several negative effects on your blog’s social stats. Your facebook likes, shares, gplus, tweets or other social stats may be reduced due to different URLs for DIfferent visitors. External commenting system (disqus or facebook comments) also has negative impat.

If you want to stop country specefic URL redirection, How to stop blogspot blog redirection to country specefic URL ? Here is the solution.

1. Open the blogger dashboard and go to template of desired blog.
2.Click edit HTML
3.Look for <head>
4. Copy and paste the following code just after <head>

 

<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>

 

You are done. Now your blogspot blog will always remain abc.blogspot.com. CHEERS!
Do you like to read, How to change the address / domain in Blogger ?
 

301-redirect