Skip to content

Instantly share code, notes, and snippets.

@g-rudrag
g-rudrag / Stop Blogger From Redirecting Your Blogspot Blog To Country-Specific URL.txt
Last active May 21, 2016 16:58
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>