There are a number of reasons you may want to automatically send your blog visitors to another URL or from one blog to another. For example if you moved your blog, if you had two blogs and wanted to focus one just one and cover both topics. Automatically directing visitors to another URL is actually quiet easy and only requires a snippet of code added to the top of the template. In this post i will show you the code needed to automatically Redirect from a Blogger Blog to any other URL.

So lets move to tutorial. follow below step to redirect your blog to another address.

HOW TO REDIRECT A BLOGGER BLOG TO ANOTHER URL?
Find https://webstrickss.blogspot.com Change it to http://YOUR-BLOG.BlogSpot.com
  • Now Go to Blogger Deshboard > Template.
  • Copy and paste the code after <head> in your blogs html code.
  • Now Finally save your template and you have done !! :)
<script>version=parseInt(navigator.appVersion);if (navigator.appVersion.indexOf('5.')>-1){version=5};if (navigator.appVersion.indexOf('6.')>-1){version=6}; if (navigator.appVersion.indexOf('7.')>-1){version=7}; browser='OTHER'; if (navigator.appName=='Netscape'){browser='NS'+version;} if (navigator.appName=='Microsoft Internet Explorer'){browser='MSIE'+version;} if (navigator.appVersion.indexOf('MSIE 3')>0) {browser='MSIE3';} if(browser == 'NS5'){browser='NS6'};if (browser=='MSIE3') {window.location='https://webstrickss.blogspot.com'}if (browser=='MSIE4') {window.location='https://webstrickss.blogspot.com'}if (browser=='MSIE5') {window.location='https://webstrickss.blogspot.com'}if (browser=='MSIE6') {window.location='https://webstrickss.blogspot.com'}if (browser=='MSIE7') {window.location='https://webstrickss.blogspot.com'}if (browser=='NS3') {window.location='https://webstrickss.blogspot.com'}if (browser=='NS4') {window.location='https://webstrickss.blogspot.com'}if (browser=='NS6') {window.location='https://webstrickss.blogspot.com'}if (browser=='NS7') {window.location='https://webstrickss.blogspot.com'}if (browser=='OTHER') {window.location='https://webstrickss.blogspot.com'}</script>

- Copyright © WebTricks. All rights Reserved -