How to redirect blogger pages from one page to another page of same or a different blog?
Sponsored Links
As we all know blogger doesn’t provide an option for 301 redirect on a page by page basis. The only option left with us is meta refresh redirect.
Say you want to redirect http://xyz.blogspot.com/2008/11/about.html to http://www.xyz.com/about/
Here is the code that you will need:
<b:if cond='data:blog.url == "http://xyz.blogspot.com/2008/11/about.html"'><meta content='0;url=http://www.xyz.com/about/' http-equiv='refresh'/></b:if>
Some points to note:
- You need to place this code just before the head section closure ie before </head> tag.
- Take note of spacing before and after equals to sign and also there should be two (==) and not one (=) equals to sign.
- content = 0 means. The browser will wait for 0 seconds before redirecting to another page.
Want to get an update as soon as we publish new article? I recommend you to subscribe via RSS Feed. You can also subscribe by email and have new articles sent directly to your inbox. It's absolutely free!
Related posts:
- How to customize PayPal payment pages and where can we find https location to store PayPal header image?
- How to load a web page bypassing the cache of browser?
- Looking to increase traffic to your blog? Check out review of these press release sites.
- Want to become a pro blogger? Read this free report.
- Confused over the terms blog, RSS, twitter, social networking? Check these creative videos.







Beautiful, thanks