Here is the new feature by blogger or blogspot site; the blogger country specific redirection. ...how to stop your blogger country specific redirection into dot com (top level domain)

Sometimes it's good when you're targeted visitors from the specific country. But it's less for seo, when you want to get visitors or readers from around the world. It's that meaning, you must use global top level domain name for your blogspot - "*.com".
The question is, how to stop your blogger country specific redirection into dot com (top level domain)? So, simple! Just use the simple short line code of javascript below;
<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>
Heres how to install the code above;
1). Login to your blogger site.
2). Click on Template ==> Edit HTML
3). Find the </head> tag in the HTML editor by opening the search box using Ctrl+F.
4). Copy the javascript code above, and paste directly into above of </head> tag of your html template.
5). Save it.
Whenever visitors or readers access your blogspot site, they will be taken to the top level domain rather than the country specific one.

