Sometime you want to redirect url from older blog using blogger to a new domain hosted on other hosting provider.
To create redirect page in blogger, go to Design ---> Edit HTML. Find code like this,
<b:skin><![CDATA[/*Place this code below before that code.
<b:if cond='data:blog.url == "OLDER-BLOGGER-POST-URL"'>Change OLDER-BLOGGER-POST-URL with complete blogger post url, change NEW-REDIRECT-URL with your new blog post url. You can change 0 with any number to change refresh time in second.
<meta http-equiv="refresh" content="0; url=NEW-REDIRECT-URL" />
</b:if>
Example your older url is http://www.ipnetconfig.com/2010/04/installing-junos-olive-in-vmware.html and new url is http://www.dailyconfig.com/2010/04/installing-junos-olive-in-vmware.html, the you write code in your blogger template like this,
<b:if cond='data:blog.url == "http://www.ipnetconfig.com/2010/04/installing-junos-olive-in-vmware.html"'>
<meta http-equiv="refresh" content="0; url=http://www.dailyconfig.com/2010/04/installing-junos-olive-in-vmware.html" />
</b:if>
0 comments
Post a Comment