Thursday 28 June 2012

How To Stop Blogger Redirection To Specfic Country URL


You might have noticed that your blog redirects to specific URL i.e for example if we type in address bar that www.sprinklerk.blogspot.com it will redirect to www.sprinklerk.blogspot.in or any other country's specific URL, based on the ip address of the visitor.This specific redirecting causes to loose the readers from all over the world
and this will we confined to only to specific country.So in order to gain readers from all over the world and increase your site traffic you need to follow some simple steps by suing java ncr script.yes you can stop redirecting with ncr
normal blog without ncr www.sprinklerk.blogspot.com/ ---> this will redirect to your country.
if you use in this way it helps www.sprinkle.blogspot.com/ncr-->this will not redirect to specific country URL.
You might have noticed my blog address it is not redirecting right?
Now i am going to say you how to stop redirecting.
Follow these steps :----
  • open your blogger dash board
  • Now click on Template. 
  • your are recommended to backup your template before doing it.
  • And now click Edit HTML--->>>> Click on proceed 
  • Find for "<head>" (tip ctrl +f and type <head>)
  • After finding it. Just below it copy the code given here and paste it as it is.
  • <script type='text/javascript'>

    var blog = document.location.hostname;
    var slug = document.location.pathname;
    var ctld = blog.substr(blog.lastIndexOf(&quot;.&quot;));
    if (ctld != &quot;.com&quot;) {
    var ncr = &quot;http://&quot; + blog.substr(0, blog.indexOf(&quot;.&quot;));
    ncr += &quot;.blogspot.com/ncr&quot; + slug;
    window.location.replace(ncr);
    }
    </script>
  • Now save the template and see your blog address
  • rk
IT IS NOT AGANIST THE RULES OF BLOGGER.GOOGLE SAYS THAT WE ALLOW ANYONE TO VIEW THE BLOG IN .COM VERSION BY USING ncr for details click here

0 comments:

Post a Comment