Steps for Redirecting your .in Blogger Domain to .com :
- Go to Blogger.com and Login to your Account and navigate to Template > Edit HTML.
- 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