Automatically Redirect A Blogger Blog To Another URL


Read {count} times since 2020

You can redirect your blog to another URL. This redirection can be done using JavaScript or by adding a special meta tag. This redirection is useful when you want to redirect your old blog users to your new blog. The function we use in JavaScript is window.location and the meta tag has http-equiv attribute.

So Let’s begin.

Go to Blogger -> Blog to be redirected -> Template -> Edit HTML.
You will get a box with a lot of text. Use one of the following methods to redirect :

1st method (JavaScript)

Add the following code just below  :

2nd method (META Tag)

Add the following code just below  :

http://www.REDIRECT_TO.com/’ http-equiv=’refresh’/>

 Change the yellow background url to the url you want to redirect to.

What’s the Difference ?

The JavaScript redirection is executed when the page starts to load, but the meta tag method can be configured to set the no of seconds to wait before redirecting. The second is mentioned just before the ;url. To set the no of seconds to 10 just use the following code :

10;url=http://sag-3.blogsppot.com/’ http-equiv=’refresh’/>

The first yellow backgrounded text is the no of seconds to wait before redirecting.
If there’s any problems/suggestion/feedback just echo out in the comment box below.
Show Comments