Skip to main content

Redirect to .com from Blogger Local Domains

Redirect to com from Blogger Local Domains
Sometimes before Blogger started redirecting its all blog to their local ( location specific ) domain, which make a site more complicated to be trusted which is hosted on Blogger without custom domain. I find this change not SEO friendly as sites that are tracking that specific Blogger rank find ranks for local domain specific site. But, if your site is browsed in other country then it shows another rank for that particular country with specific domain. In brief, this make your site rank more & more worst.
So, I really suggest you to redirect domain to .com domain.
Some steps are given here to make your Blogger domain .com :
  1. Log in to your Blogger account, open Template and click on 'Edit HTML'.
  2. Find <head> & paste below code just below <head> :
<script type='text/javascript'>
var blog = document.location.hostname;
var slug = document.location.pathname;
var ctld = blog.substr(blog.lastIndexOf(&quot;.&quot;));
if (ctld != &quot;.com&quot;) {
var ncr = &quot;http://&quot; + blog.substr(0, blog.indexOf(&quot;.&quot;));
ncr += &quot;.blogspot.com/ncr&quot; + slug;
window.location.replace(ncr);
}
</script>

3. Then, click on Save Template & you are configured to redirect your local Blogger domain to .com domain.

Note : If you are finding that you are not yet redirected to .com domain then clear your browser cache.

Comments