How to redirect individual blogger posts to another blog with different domain

Hello folks, many a times we found ourselves in dilemma whether to use forwarding a domain or just
redirect our posts, so that our rankings stay with ourselves. While talking about forwarding a domain, I tried it and could not find it successful though I never thought about redirecting. I search google and found there are lots of issues with forwarding a domain. I just got an idea - Why can't we redirect our individual posts to our new domain. So that when people search it on google, they will automatically be redirected to the new domain name but with same post. 

So, if you are also looking to redirect all OR some posts of your blog to another blog with different domain name. Here is the code which will work for you. 

Please note : if you have n number of posts, you will have to work hard as it is a very time consuming process to redirect every single post one by one. 

How to redirect post individually to another domain : 

1. Login to your blogger account. Here, please keep in mind that you paste this code in the domain from where you want to redirect. 
2. Go to Themes and Click 'Edit HTML'. 
3. Look for the given line below:
<b:include data="blog" name="all-head-content"/>
4. Paste the following code just below it. 
<b:if cond='data:blog.url == &quot;Your-Blog-Post-URL-HERE&quot;'>
<meta http-equiv='refresh' content='0;url=External-Post-URL-HERE' />
</b:if>
5. Now, you need to change the following items in the above code.

    Replace Your-Blog-Post-URL-HERE with the URL of the post which you want to redirect. 

    Again, Replace  External-Post-URL-HERE  with the URL to which the post needs to redirect. 

6. You can add as many as posts as you want to redirect to other blog. But you will have to change one by one.

Blogger has provided custom redirects feature, where we can redirect any posts to other URL but that will not work for external domain name. You can use that feature also if you want to redirect posts from one address to another internally. If you found any difficulty, use the comment section, I will try to sort it out asap. 

Comments