Redirect Your Blog To blogspot.com

Recently Google changed a lot of things along with their policies. Google started redirecting blogger blogs to country-specific URL. Lets consider that you have open anyblog.blogspot.com in your browser, you might be redirected to anyblog.blogspot.in if you are located in India or to anyblog.blogspot.com.au if you access the same blog from Australia. It is not a new thing since few days that your blogspot.com blog may redirect to a country based domain. Perhaps it is worldwide. Every blogger blog owner may have the same problem of automatic redirection. So here in this post, we have a tweak that enables your blog to stay on blogspot.com URL.

How To Redirect Your Blogger Blog To .Blogspot.com?
We will apply this hack with using very short JavaScript.
  • Go to Blogger Dashboard > Design > Edit HTML.
  • Take a backup/download your template.
  • Find for </head> tag.
  • Add below piece of JavaScript code just above </head> tag.
<script type="text/javascript">
var blog = document.location.hostname;
var slug = document.location.pathname;
var ctld = blog.substr(blog.lastIndexOf("."));
if (ctld != ".com") {
var ncr = "http://" + blog.substr(0, blog.indexOf("."));
ncr += ".blogspot.com/ncr" + slug;
window.location.replace(ncr);
}
</script>

Now save your template.
Now your Blogger Blog will always redirect to the blogspot.com URL.