Powered by Blogger.
advertisement

Tuesday, 12 January 2016

How To Redirect Blogspot.In To Blogspot.Com Address

Advertisement
advertisement

Steps for Redirecting your .in Blogger Domain to .com :
  1. Go to Blogger.com and Login to your Account and navigate to Template > Edit HTML.
  2. Now find </head> tag and than paste the below code right above it.

<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>
Save the Blog and refresh page

Advertisement
advertisement