Aug 10, 2013

How to Change Your Blogspot.in into Blogspot.com

on
Widget

We have seen that Blogs being hosted on Blogspot Domain, redirect Bloggers Blog to the country's-specific URL. You can change this automatic redirection to urblog.Blogspot.com by adding a piece of java-script code to your Blogger template. Let's see how

How To Apply


■ Open Blog Dashboard
■ Open Template → Html editor
Find (pressing Ctrl+F) </head>

Java Script

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

Hit Save button and you are done. 

No comments: