I don't think this is true because I can open sweden.blogspot.se and I'm not from Sweden. It doesn't redirect me anywhere. It's .seit depends on the person who visits your blog, it's all the same though, it doesn't matter if it's a .com or an .se
try it with a swedish proxy or hola and you'll see
I don't think this is true because I can open sweden.blogspot.se and I'm not from Sweden. It doesn't redirect me anywhere. It's .se
I don't think this is true because I can open sweden.blogspot.se and I'm not from Sweden. It doesn't redirect me anywhere. It's .se
the country specific redirection can be easily disabled editing the html template, so it will always serve the .com, you only need to paste the following code below the <head> tag into the template:It might open but does the url not automatically redirect to a local geographic url. It does on all the blogs I have known on blogger.
Edit, I just ran a test, from the UK, blogger doesn't seem to be doing that annoying redirect. You are getting the page you search for. So I got both .se. and .co.uk on two separate searches. So the real tld of Sweden.blogspot.se. is most probably, Sweden.blogspot.com. but as you searched for.se that's what you got.
<script type="text/javascript">
var blog = document.location.hostname.split(".");
if (blog[blog.length - 1] != "com") {
var ncr = "http://" + blog[0] + ".blogspot.com/ncr";
window.location.replace(ncr + document.location.pathname);
}
</script>