Sunday, August 18, 2013

Prevent Blogger Redirection To Country Specific URL

Click Edit Template, after <head> paste the follwing code.


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



That's it.
Code credit: Labnol

Share This