
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.
Tried this and it said "void" error on page
how to redirect multiple posts from blogger blog to another blog