Friday 15 June 2012

Stop Blogger Redirecting To Country Specific Domains

Important: All scripts hosted on widcraft.googlecode.com don't work anymore because Google has blocked that SVN repository.


As a blogger i really hate when blogger redirect me to my country specific domain .in . Because of this redirection i can't add a Facebook Login Button so today i'am show you how to stop this redirection on your blogger blog,
  • Go To Blogger > Template > Edit HTML
  • Find :
<b:include data='blog' name='all-head-content'/>

  • And Just Below It Paste :

<script type="text/javascript">
var str= window.location.href.toString();
if ((str.indexOf('.com/'))=='-1') {
var str1=str.substring(str.lastIndexOf(".blogspot."));
if (str1.indexOf('/')=='-1') {
var str2=str1;
}
else {
var str2=str1.substring(0,str1.indexOf('/')+1);
}
window.location.href =window.location.href.toString().replace(str2,'.blogspot.com/ncr/');
}
</script>
  • Save Template And You're Done ......Now Check It By Visiting.....
Important: Check our new website TricksPanda.com for WordPress tutorials, plugins and more.
 
Powered by Blogger.