How get back Blogger domain to Blogspot.com
Blogger launched new service by which your blog domain will automatic trnsfer to specific country top domain name some blogger have problem by this thing they don't want this they want only blogspot.com,in this posts we will learn how we can redirect domain name to blogspot.com
Every blogger blog owner may have the same problem of automatic redirection. So here in this post, we have a tweak that enables your blog to stay on blogspot.com URL.
first of all let’s as know Why a .com redirect to a ccTLD (Country Specific Top Level
Domain) URL may hurt you? This is because according to MR. Search Engine Optimizer’s law, you can’t
host the same content on different domains. If you are using blogger on your own top level domain,
then there is no point of worry. But if your blog has a .blogspot.com address in its tail, then it may hurt
you.
Here is the simplest JavaScript code (Pretty short too!) that you can
use to save your blog from being redirected:
Place this in the HTML code of your blog and you won’t see any redirect further.
Every blogger blog owner may have the same problem of automatic redirection. So here in this post, we have a tweak that enables your blog to stay on blogspot.com URL.
first of all let’s as know Why a .com redirect to a ccTLD (Country Specific Top Level
Domain) URL may hurt you? This is because according to MR. Search Engine Optimizer’s law, you can’t
host the same content on different domains. If you are using blogger on your own top level domain,
then there is no point of worry. But if your blog has a .blogspot.com address in its tail, then it may hurt
you.
Here is the simplest JavaScript code (Pretty short too!) that you can
use to save your blog from being redirected:
Place this in the HTML code of your blog and you won’t see any redirect further.
if ((window.location.href.toString().indexOf('.com/'))=='-1') {
window.location.href =
window.location.href.toString().replace('.blogspot.in/','.blogsp
ot.com/ncr/');
}
window.location.href =
window.location.href.toString().replace('.blogspot.in/','.blogsp
ot.com/ncr/');
}
Cloud you please elaborate more?