How to Redirect a Blogger Blog to another Blog or Website


How to Redirect a Blogger Blog to another one

To redirect a your blogspot to another Blog or Website, just add a Meta Tag in the Header section of the blog as shown below:

  • Search for:

    <b:include data='blog' name='all-head-content'/>

  • Add this Meta Tag just after the above code:

    <meta content="0;url=http://YOUR NEW URL HERE" http-equiv="refresh"/>

  • Then Save the Template. That’s all! :)


You May Also Like:

Article by Shafar.
About the Author: Tech Freak, Android Lover, Wordpress Addict, Social Media Junkie and the Founder of TipsBlogger.
To submit guest posts to TipsBlogger, please read the Guidelines.

46 Responsesto “How to Redirect a Blogger Blog to another Blog or Website”

  1. Nilay says:

    thanks a lot. I used it to redirect my trafficfrom sahaideas.blogspot.com to rksahaconsult-usa.blogspot.com

  2. AQSA says:

    thanx a lot….

  3. Prateek says:

    Does it work for all kind of templates?

  4. Shafar says:

    @Prateek
    It WILL work in all Blogger Blog Templates
    !

  5. Shery says:

    Finally one that works :)

  6. it worked thanks man iam gonna sub its funny u put dont forget to activate the meail when subbing ya it suks when they dont i got like 4500 subs and like 400 didnt activate there email i email them directly lol

  7. Alena says:

    Thank you!! It did work, finally! Loved your other tips as well…

  8. Anonymous says:

    Thanks! It is a great and useful blog.

  9. twinstaiye says:

    Thanks, I was able to redirect my traffic from my previous url on the same blogspot.

  10. thanks worked great for me!

  11. Daily Mobile says:

    thx man i used this code to my older blogs :)

  12. Drmayuryadav says:

    u rock dude .osum…….it rally worked //………thanks a ton …….. keep up d good work

  13. I am receiving the following error when I try this
    “Please correct the error below, and submit your template again.
    Your template could not be parsed as it is not well-formed. Please make sure all XML elements are closed properly.
    XML error message: Open quote is expected for attribute “{1}” associated with an element type “content”.”

  14. Shafar says:

    @Talina of Harvest of Daily Life
    Please try again, I made some changes now.

  15. BunnyB says:

    Still I face the same issue… Just to be clear: is it possible to redirect to a normal domain page http://www.example.com?

  16. Shafar says:

    @BunnyB
    Yes, you can redirect your blogspot blog to any domain.

  17. Priyanka says:

    not working. it says,
    “Your template could not be parsed as it is not well-formed. Please make sure all XML elements are closed properly.
    XML error message: Open quote is expected for attribute “{1}” associated with an element type “content”.”

  18. Shafar says:

    @Priyanka
    Made changes to the code. Now it’s working fine, damn sure! Try it! :)

  19. McKay says:

    Here is a way to redirect individual blog posts. This way no links are broken:

    http://tutorialgeek.blogspot.com/2010/11/how-to-change-your-blogger-domain-url.html

  20. worked for me. thanks

  21. Ereina says:

    Wow! This was so easy! Thank you so much!

  22. nikos says:

    you are the best!

  23. what about SEO? is this a temp redirect or a 301 redirect?

  24. sumit rana says:

    thnx bro___i wz very worried abt mah change of domain frm http://www.trickytech.co.cc to http://www.trickytech.org ___now m litl pleased____thnkew vey much

  25. murali says:

    Thanks for you tip.

  26. Emma says:

    Hello,I came across to your blog from google. Really a fantastic article. I loved it and willing to come back again.Best Regards,Emma

  27. Jack wilson says:

    Thanx a lot ….. my question is how to redirect my post on one domain to another.. for example let this is my post http://abc.blogspot.com/2011/10/i-am-happy.html
    and i want this post to redirect to
    http://abc-abc.blogspot.com/2011/10/i-am-happy.html

    how to do that..? I have tried ur code but when i open http://abc.blogspot.com/2011/10/i-am-happy.html it redirect’s to
    http://abc-abc.blogspot.com (home page) instead of http://abc-abc.blogspot.com/2011/10/i-am-happy.html
    so , I would be thank-full to u if u help me with this issue..

  28. Shafar says:

    @Jack wilson
    If your target site is also a blogger blog, you can redirect to its homepage only. Blogger doesn’t have these kind of advanced options. However if your target blog is self-hosted wordpress, you can do this using various tutorials available online.
    For example:
    http://www.iblogzone.com/2010/03/how-to-migrate-from-blogger-to-wordpress-part-1.html

    If you cannot do this personally, avail professional services from the experts.
    For example:
    http://bloggertowpmigration.com/

    Good Luck

  29. I usually go to de configuration panel at blogger and add my new domain as if I were going to use the domain at blogger, but I do not update the dns to google, just use the hosting normally. I do this after importing the posts from blogger to wordpress.

    This way all the links are redirected to the domain.

  30. To be more clear. I add teh domain that I´m using in my wordpress site as a custom domain on blogger.

    Obviusly I will not update the domain DNS to point to the google servers.

    This way all the links are redirected properly to the wordpress blog where you can handle them with plugins and a proper permalink structure to keep at least the permalinks for the posts the same.

    Reccommended Plugins:
    Redirection
    Permalink Migrator
    Broken Link Checker

  31. try this

    strLoc = window.location.href;
    var newLoc = strLoc.replace('http://abc.blogspot.com/', 'http://abc-abc.blogspot.com/&#039 ;) ;
    window.location.replace(newLoc);

    This way you redirect all user who has javascript enabled (almost everyone) from one site to another.

    If you want to redirect just one post you can use the same code. Here is the example.

    strLoc = window.location.href;
    var newLoc = strLoc.replace('http://abc.blogspot.com/2011/10/i-am-happy.html', 'http://abc-abc.blogspot.com/2011/10/i-am-happy.html&#039 ;) ;
    window.location.replace(newLoc);

    This code can be pasted in the html of your theme in the head section.

  32. thanks its ur and my turning point.

  33. Jagath says:

    I saw your site when i search for blog post redirection. is there any way we can redirect users to another blog post in same blog after 1 or 2 minutes.

  34. This can be done using the same code provided in this blog post but you need to add a conditional IF.

    Here you can see some examples:
    http://mystady.com/2011/05/7-blogger-page-types-analysis-code.html

    So you can use an IF asking if the actual blog url (data:blog.url) is the url of the post that you want to redirect after some time.

    And then You can add the meta redirection with the delay of time that you want.

    Here is the code

    <b:if cond=’data:blog.url == &quot;http://YOUR OLD URL HERE&quot;
    ‘><meta content="60;url=http://YOUR NEW URL HERE" http-equiv="refresh"/></b:if>

    I do not know if the code will be shown as it should, so if it dos not work I can post a link to a text file or something like that where you can see the code or even a live example.

  35. बहुत बहुत शुक्रिया! Great!

  36. Go Lolz says:

    best redirection trick….

  37. Narayan says:

    The trick worked but i just want to know how to redirect even faster then that. Is there a way?

  38. Shafar says:

    @Narayan
    I’m afraid there is no other way to do this.

  39. Anand says:

    Its great, I got the answer in a single click. Thanks for the info.

  40. Alonso says:

    Thank you! This is very useful info for me!

  41. Andy says:

    Hi Shafar,
    I must say that the code you provided is excellent and will help all of us who want to redirect in Blogger. But, I need a help from you.

    I have deleted few blog-posts from my blog-site and now want to redirect visitors to my Homepage.

    If you visit http://news24x7online.blogspot.in/2011/11/hot-sexy-photos-of-sunny-leone-new.html this deleted page you will get to see the default Blogger Message, But I want to redirect all visitors to my Homepage instead of Blogger’s Default page.

    Is there any code to redirect to homepage on selected url-blog-pages?

  42. Shafar says:

    @Andy
    Try this code:
    <b:if cond=’data:blog.url == &quot;http://YOUR OLD URL HERE&quot;
    ‘><meta content="60;url=http://YOUR NEW URL HERE" http-equiv="refresh"/></b:if>

    Tip by: Fernando Benito

    Useful link: http://mystady.com/2011/05/7-blogger-page-types-analysis-code.html

Leave a Reply