{[['']]}
All you know that when we enter www.google.com from India it automatically redirects into www.google.co.in Similarly now onwards blogger also redirects your Blog URL.
2. Now edit the template with html.
3. Copy Down the Below code and Paste after the Tag.
var blog = document.location.hostname;
var slug = document.location.pathname;
var name = blog.split(".");
if (name[name.length-1] != "com") {
var ncr = name[0] + ".blogspot.com/ncr";
window.location.replace ("http://" + ncr + slug);
}
4. Now save it.
What for this country specific URL redirection ?
As laws are different in different countries, Google can freely block , remove content from specific blog according to their local law. And this blog will be visible to other countries in world.
Now how to break it:
1. Login in your account.As laws are different in different countries, Google can freely block , remove content from specific blog according to their local law. And this blog will be visible to other countries in world.
Now how to break it:
2. Now edit the template with html.
3. Copy Down the Below code and Paste after the Tag.
var blog = document.location.hostname;
var slug = document.location.pathname;
var name = blog.split(".");
if (name[name.length-1] != "com") {
var ncr = name[0] + ".blogspot.com/ncr";
window.location.replace ("http://" + ncr + slug);
}
4. Now save it.
Post a Comment