How to redirect blogger pages from one page to another page of same or a different blog?

1

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 == &quot;http://xyz.blogspot.com/2008/11/about.html&quot;'>
<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.
Digg, Stumble, Twit or share this post by clicking on any of the buttons below:
  • Digg
  • del.icio.us
  • StumbleUpon
  • Sphinn
  • Yahoo! Buzz
  • Technorati
  • TwitThis
  • Facebook
  • MySpace
  • Google Bookmarks

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:

  1. How to customize PayPal payment pages and where can we find https location to store PayPal header image?
  2. How to load a web page bypassing the cache of browser?
  3. Looking to increase traffic to your blog? Check out review of these press release sites.
  4. Want to become a pro blogger? Read this free report.
  5. Confused over the terms blog, RSS, twitter, social networking? Check these creative videos.

Comments

One Response to “How to redirect blogger pages from one page to another page of same or a different blog?”

Speak Your Mind

Tell us what you're thinking...
and oh, if you want a pic to show with your comment, go get a gravatar!