The Ideal way: Migrating from Blogger to WordPress

Many people start the blog on a free blogging platform like blogger and WordPress. And after 6 months or 1 or 2 years time, if the person keeps on blogging, then he is almost certain to start feeling that he did a mistake! Mistake of starting the blog on a free blogging platform.

But do not think it as a mistake anymore. While starting a self hosted blog is a smart idea, but we know the fact that many blogs die within 1 to 6 months, so its good to start a blog on these blogging platform and invest some time to figure out whether blogging is for you or not. And it will be a good thing to learn the most basic things using those blogging platforms and then move or start a new self hosted blog.

Many people may advice to have a self hosted blog from day one, and we respect that idea too. If you can dedicate more time to learn and if you are commented enough for your blog and blogging, then either way you can start your blog.

Installing a self hosted WordPress is very easy and only takes minutes.

If you have a blog at blogger and want to transfer to your own self hosted WordPress blog, then here is a resource which will help you through the process.



For the text version of this tutorial you can follow this link labnol.org
And to be on safer side, do not forget to tell Google that you are moving your blog, at webmasters tool.

Code to redirect basic html page

redirectWe have seen many plugins and 301 redirection … bla bla bla in wordpress and many other blogging platforms, to redirect the users automatically from a webpage to another webpage or from one domain to another.

Ex:- You have shifted an article to different page and now you want your visitors to automatically get redirected to the new page, instead of showing the link “click here to Enter” etc and expecting your visitors to click that link and read the article.

But many people using basic html face problem using the redirection. They need to manually create a link to navigate to different pages..this can be avoided by using these simple codes

<meta http-equiv=”refresh” content=”0; URL=http://www.google.com/”>

This code should be placed between head tag. And replace http://www.google.com/ to whatever URL you want your visitors to be redirected.

Another method is to use this code…

<script language=”javascript” type=”text/javascript”>window.location=”http://www.google.com/”;</script>

Here also replace http://www.google.com/ to whatever URL you want your visitors to be redirected.

Using such redirection may not be SEO friendly, but use it when its very much needed.

But people using WordPress, blogger etc, please do not use this type of redirection. There are many SEO friendly redirection methods that you can incorporate and save your Search engine juice.