Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save g-rudrag/5e3f601cc766628f474ff959723a7faa to your computer and use it in GitHub Desktop.
Save g-rudrag/5e3f601cc766628f474ff959723a7faa to your computer and use it in GitHub Desktop.
Stop Blogger From Redirecting Your Blogspot Blog To Country-Specific URL
<script type="text/javascript">
var blog = document.location.href.toLowerCase();
if (!blog.match(/\.blogspot\.com/)) {
blog = blog.replace(/\.blogspot\..*?\//, ".blogspot.com/ncr/");
window.location.replace(blog);
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment