Stop Domain Country - Specific URL Redirecting from Blog
Stop Domain Country - Specific URL Redirecting from Blog
Add the following code to <head> tag to stop Domain Country - Specific URL Redirecting from Blog or Blogspot.
<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>
No comments:
Post a Comment