Most of us already know that google redirects all the blogs on blogger.com to their respective country specific domains. That is if the owner of the blogs is from India then the blog is redirected from abcd.blogspot.com to abcd.blogspot.in or if the blog owner is from Russia then the blog is redirected from abcd.blogspot.com to abcd.blogspot.ru.
Why google redirects blogger blogs to country specific domains?
Google has implemented this to categorize the blogs in accordance to the writers and the readers country, because of lot of censorship issues on the internet. If there is any website or blog with unwanted content, then it might be banner or blocked from some countries, and still be visible on few other countries.
Follow these steps to Stop Blogger from Redirecting to Country Specific URLs:
1. Log in to your blogger blog.
2. Go to the your blog Dashboard.
3. Choose template and click on the “EDIT HTML” option.
4. Search for the <head> tag, once you find it then right below the head tag copy and paste the JavaScript given below.
==============================================================
<script type="text/javascript">
var str= window.location.href.toString();
if ((str.indexOf('.com/'))=='-1') {
var str1=str.substring(str.lastIndexOf(".blogspot."));
if (str1.indexOf('/')=='-1') {
var str2=str1;
}
else {
var str2=str1.substring(0,str1.indexOf('/')+1);
}
window.location.href =window.location.href.toString().replace(str2,'.blogspot.com/ncr/');
}
</script>
==============================================================
Once you have pasted these few lines, save the Html Template, now all your visitors will not be redirected to any country specific URLs.
The List of Countries where Country Specific Redirection is actively implemented are as follows.
1. Argentina – Redirects to [blogspot.com.ar]
2. Australia – Redirects to [blogspot.com.au]
3. Brazil – Redirects to [blogspot.com.br]
4. Canada – Redirects to [blogspot.ca]
5. France- Redirects to [blogspot.fr]
6. Germany – Redirects to [blogspot.de]
7. India – Redirects to [blogspot.in]
8. Italy – Redirects to [blogspot.it]
9. Japan – Redirects to [blogspot.jp]
10. Mexico – Redirects to [blogspot.mx]
11. New Zealand - Redirects to[blogspot.co.nz]
12. Portugal - Redirects to[blogspot.pt]
13. Spain - Redirects to[blogspot.com.es]
14. Sweden – Redirects to [blogspot.se]
15. UK – Redirects to [blogspot.co.uk]
I hope this post was useful to stop blogger blog redirecting to country specific domains, if you have queries then please comment below.
No comments:
Post a Comment