How To Redirect a Blogger Post to Another URL

Posted by Lasantha Bandara File Under : html, meta tags, seo

How To Redirect a Blogger Post to Another URL

Do you wish to redirect a specific Blogger post to another page or an external URL? Whether you're retiring a post, upgrading your structure, or simply improving navigation, there's a simple and effective way that works perfectly on Blogger.

1. Go to "Edit HTML" page of your Blogger blog.

2. Scroll down to where you see <head> tag .

3. Copy below code and paste it just after the <head> tag.

<b:if cond='data:blog.url == "YOUR-BLOG-POST-URL"'>
<meta http-equiv="refresh" content="5; url=REDIRECT-URL" />
</b:if>

4. Replace:

  • YOUR-BLOG-POST-URL → with the full link of the Blogger post to redirect from.
  • REDIRECT-URL → with the target URL.

Look at the example below.

<b:if cond='data:blog.url == "https://www.bloggertipandtrick.net/p/contact-me.html"'>
<meta http-equiv="refresh" content="5; url=https://www.bloggertipandtrick.net" />
</b:if>

If I add above code to my template, when someone go to my contact us page he will be redirected to my home page after 5 seconds. To redirect without waiting, replace 5 with 0.

5. After making changes to the code, click "Save" in the theme editor. That’s it. Your post now will be redirected to the new URL provided.

2 thoughts on “How To Redirect a Blogger Post to Another URL

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.