Migrating-Redirecting Blogger to Wordpress: The Complete Guide!

By BLOGBloke January 30th, 2008 | 342 Comments

Migrating-Redirecting Blogger to Wordpress: The Complete Guide!

Tutorials by Bloke BlokeOk Blokesters, I promised to deliver and here it is. This is the blog tip that you’ve all been waiting for. The absolute best way to move your Blogger blog over to Wordpress, including the elusive Holy Grail for redirecting your blog posts and keeping your blog authority and Google Juice.

One of the reasons that my writing has been sparse lately is because I’ve spent days sourcing out scripts, plugins, and documentation to figure out the best way to redirect my old Blogger posts to Wordpress.

Whew! Throughout my journey I soon discovered there is no shortage of help out there, but unfortunately none of them worked very well, or not at all.

Not one to give up easily I had to dig in my heels and get down and dirty, and I’ve finally got the answer for you. So sit back and relax (I know that I will after writing this) in the knowledge that all of your old Blogger links will continue to work.

1. Change your Domain Host DNS Settings:

Go into your Domain Name host (I use GoDaddy) and change the Nameserver setup according to your blog host’s instructions. Your blog host company should have emailed you the directions how to do this. If not, then give them a call.

GoDaddy Name Servers Settings
Please Note: Make sure you have set up your Custom Domain on Blogger before giving control over to your new blog host. See step #3 on Blogger Custom Domains: Best Setup for Optimizing your Blog ! if you don’t know what I’m talking about.

2. Import your Blogger posts into your Wordpress blog:

You will find the Import link under the menu Manage in your Wordpress dashboard. Just follow the directions and let Wordpress perform it’s magic.

Note: If it doesn’t work, open up a wordpress.com account and import from there. Then export the file to your desktop and import it back again via your self-hosted Wordpress dashboard.

Import Blogger to Wordpress

3. Park Your Old Blogger Custom Domain (if different than your New Domain Name) in your Wordpress cPanel:

If you were hosting your Custom Domain on Blogger and you are going to use a different domain name (like I did, moving from Instabloke.com to BlogBloke.com) you will have to park the old Blogger Custom Domain in your new domain’s cPanel.

This is what my cPanel looks like:

parked domains Migrating Redirecting Blogger to Wordpress: The Complete Guide!

Park a Domain

4. Create and/or Modify the ”.htaccess” file:

If you don’t have an .htaccess file you can find more information about it at the htaccess Tutorial or the Comprehensive guide to .htaccess. Be sure to make it’s file permissions writable and put it into the root directory of your blog via your blog host cPanel.

This is the Holy Grail for redirecting your old Blogger posts over to Wordpress. What’s so great about it is it’s not complicated, is easy to set up … and unlike the others I checked out — this technique actually works!

I’ve literally spent days playing and experimenting with various plugins, php code and Apache redirects and I believe I’ve found the very best (and easiest) setup for redirecting your old Blogger links to Wordpress.

This method assumes that you will be using the permalinks custom structure /%postname%/ (you will find it in your Wordpress dashboard under the Options, Permalinks, Custom Structure menus) which is the best link structure for SEO optimization.

Permalinks Custom Structure Settings

So here is your redirect code:

RedirectMatch permanent ^/[0-9]{4}/[0-9]{2}/([a-z0-9]+) http://yourblog.com/$1

Just copy and paste the above code into your .htaccess file before the line:

# BEGIN WordPress

What it all Means:

RedirectMatch
This statement calls Apache’s mod_alias module.

permanent
This tells the search engines the redirect is permanent. The old address is no longer valid and should be replaced with the new address.

^/[0-9]{4}
The first address we are matching, beginning with a four-digit year stamp.

/[0-9]{2}
This is the next address we are looking to match which will have a two-digit month stamp.

/([a-z0-9]*)
This is where (what Wordpress calls) the ”post slug” goes. It can contain any number of lowercase letters, numbers and dashes.

http://yourblog.com/$1
This is the address that we want to redirect to (i.e. your blog). The $1 variable at the end is replaced by whatever was matched in the previous statement.

Now watch the magic begin. Click on this link:

http://www.instabloke.com/2007/12/flexibile-blogging-join-revolution.html

and you will see what I mean. Keep your eye on the address bar in your browser and see how fast and seamlessly it redirects from the old blog to the new. No fuss, no muss. You will also note the .html extension has disappeared too. COOL!

From my experience there is no perfect setup that will work absolutely 100% of the time, but this should work about 99% of the time and those are pretty good odds as far as I’m concerned.

I say 99% because Murphy’s law rules and there will be (at least there was in my case) the odd link that was changed during the import stage that the redirect couldn’t find a match. So it made a best guess that was either incorrect, or it defaulted to my user-friendly 404 page.

Chances are you didn’t fiddle with your post titles after first publishing it like I did, so you probably won’t even notice anything. Either way, it’s still automatically redirecting to my Wordpress blog and that is a good thing. I’m happy with the results and so should you.

5. Tell Blogger to STOP letting the search engines index your site:

In your Blogger Dashboard, click on “Settings“, “Basic” and scroll down to where you see “Let search engines find your blog?” Choose “No”.

Blogger settings - no search index

You can also put the following meta tag in your template,  right after the < head > tag:

<  meta content=’NOINDEX, NOFOLLOW’ name=’ROBOTS’/ >

Just be sure to close up the < > brackets.

6. Switch Your Feedburner Newsfeed:

All you have to do is replace your old Blogger feed with the new Wordpress feed in your Feedburner dashboard.

Feedburner edit newsfeed address

If you are smart like I know you are, you will also comment-out the following code from your Header PHP file:

<!– < link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”< ?php bloginfo(’rss2_url’); ?>” /> –>
<!– < link rel=”alternate” type=”text/xml” title=”RSS .92″ href=”< ?php bloginfo(’rss_url’); ?>” /> –>
<!– < link rel=”alternate” type=”application/atom+xml” title=”Atom 0.3″ href=”< ?php bloginfo(’atom_url’); ?>” /> –>

And replace it with:

< link href=’http://feeds.feedburner.com/yourname’ rel=’alternate’ title=’Your Full Feed’ type=’application/rss+xml’ />

Again, please close up the < > brackets .

So why why should we do this? I’m glad that you asked. We do it so our feed stats won’t be diluted. You only want to offer your readers one newsfeed option - and that is Feedburner.

Blogger also allows you to  seamlessly transfer your existing subscribers.  In your Blogger dashboard go to Settings, Site Feed. In the Post Feed Redirect URL box, enter your new FeedBurner address. This will redirect your subscribers.

Bloffer Feed Redirect Settings

Fix Your Internal Blogspot Links:

One more thing. If you are like me you might have internal links pointing to old posts that have a blogspot address. Internal links also count with the search engines so you don’t want to bleed your pagerank over to your dead blog.

If your blog is large like mine, trying to change each individual link can be a real pain and a time waster. Fortunately I found a solution that someone else has already solved.

Grab this Wordpress plugin and watch it perform it’s magic.

In Conclusion:

If you follow these directions correctly you shouldn’t lose any Google Juice from the move, or in other words your rank and authority should transfer to your new blog from the old as the search engines follow the redirects. It is all done automatically, working seamlessly in the background and your readers won’t even notice the difference.

Because we are using the .htaccess file for redirection it’s very F-A-S-T and easy to do as compared to trying to do the same thing with messy scripts, PHP or unsecure plugins (which don’t seem to work very well either).

Oh yes, one more thing. Whatever you do, do NOT delete your old Blogger posts or your blog either for that matter. Why? Because you want to keep your Googly Juices flowing with the redirects, and if you delete your blog entirely some spammer might snap it up.

I hope you enjoy this as much as I did writing it. Cheers!

P.s: You should also read Moving Blogger Over to Wordpress: The Good, Bad and the Ugly that will give you a good overview of all of the issues.

UPDATE: There seems to be some confusion amongst readers understanding the difference between a Domain Host and a Blog Host.

The Domain Host (like for example GoDaddy) is the company that hosts your Custom Domain name. If you use GoDaddy to manage your Custom Domain you will find it under the Domain Manager menu after you log in.

The Blog Host is the company that hosts your Wordpress installation and theme files. If you don’t know where your cPanel is you need to contact your Blog Host company and ask them for the URL address and password.

I hope that helps.


Filed under: *Best Articles, Blog Design Tips, Blog SEO, Blog Tips, Blog Tutorials, Blogger, Featured Articles, Wordpress , , , , , , , , ,

Keep it Real with Blog Bloke Keep it Real with BLOGBloke, the Original Blog Tips and Social Media Guide. New readers can read more about me here. Feel free to contact me with any questions you may have and if you enjoyed this article please subscribe below, share with friends or leave a comment. CHEERS!

Share the Knowledge: Share this article with friends..

 
These icons link to social bookmarking sites where readers can share and discover new web pages.
  • TwitThis
  • Facebook
  • GoogleBuzz
  • StumbleUpon
  • Digg
  • del.icio.us
  • FriendFeed
  • Live
  • YahooMyWeb
  • Sphinn
  • LinkedIn
  • Technorati
  • Don't Miss another Blog Tip from BLOGBloke and Keep it Real..

    Subscribe here to the Better Tips Newsfeed!   

    Follow @BLOGBloke on Twitter for More Tips and News!

    Connect with BLOGBloke on Facebook

    What Next? Read More Tips From BLOGBloke:

            Got an Opinion? (Add Yours Now)

    Ok Blokesters it's your turn to tell me what you think, ask a question or suggest a blog tip. Don't forget the comments policy and I'm looking forward to reading what you have to say.

    There are 342 Comments so far to “Migrating-Redirecting Blogger to Wordpress: The Complete Guide!”

    *Skip to the comments form
    1. Note to self to bookmark this for future reference… Great tutorial, Bloke, thank you. I know one day I will need this.

      Right now I am happy with my Blogger blog; I really don’t have any issues to get me to stress out transferring everything over. For now, for me, it’s a matter of “if it ain’t broke”….

      [ Reply..]

    2. Thanks Maureen. Funny that the bloggers who requested this tutorial haven’t commented yet.

      [ Reply..]

    3. Well, I wasn’t totally what I expected ! But it certainly will be a hot post once the word gets out there !

      [ Reply..]

    4. Oops I kept some ‘t’ to myself ! I meant ‘it’ (this post) is not what I expected .. I thought it would be much easier than this !

      Great work bloke !

      [ Reply..]

    5. Thanks Jaffer. I spent a great deal of time and effort on this post and I hope it helps.

      [ Reply..]

    6. Thanks BB. I just have a silly question. The cPanel is part of the Wordpress Codex? I’ve ever seen that kind of panel before.

      [ Reply..]

    7. Superb tutorial, as always. Although I’ve done much of this myself, the hard way, I did not implement the tip to stop search engines from indexing my Blogger blog the way you’ve described. I know I did something, but I can’t remember what. I went back and made that change to “no” and hopefully that takes care of any duplicate content penalties I might have incurred. I know this will help everyone who’s considering the move. I know of a couple people who are thinking about it and will send them your link.

      [ Reply..]

    8. Thanks Bloke. Turns out since creating a google sitemap with google sitemap creator plugin. I only have 14 lost links now and most of those are comment links. I am currently using the permalink structure of /2008/01/30/postname.

      I wonder If I can alter the code above and add the day code, and then change my permalinks to %/postname/% I know it is beter for search engines. I like the notify me via email of comments. I also have it on my blog and notice it gets used a lot.

      [ Reply..]

    9. Great information, you may want to add a recipe for moving from blogspot.com… I have been trying to follow spontaneousderivation and lafers.net but both seem to be broken when redirecting internal pages.

      [ Reply..]

    10. There’s no silly questions here TonNet. We are all dufuses in one way or another, including yours truly. :)

      To answer your question, the cPanel is provided by your blog host provider. It is where your blog installation resides and where you perform all of your technical adjustments. It is separate from the Blogger Dashboard which is what I think you are referring to.

      [ Reply..]

    11. Thanks Kathy, and don’t forget to redirect all of your blog posts via .htaccess. You will have change your permalink structure to use the method that I described above. You can alter the code if you like to keep your existing permalink structure, but it is not recommended for SEO optimization.

      [ Reply..]

    12. Jake, this should also work for blogspot. Click on this link and see how it works:

      http://www.blogbloke.com/2007/12/flexibile-blogging-join-revolution.html

      Sweeeeeet!

      [ Reply..]

    13. Curtis, you can’t use just %/postname/% and still have the day code. It’s either one or the other. I recommend dumping the day code and use the method that I provided. Keep it simple.

      [ Reply..]

    14. Ok, Right now all my posts are in /year/month/day/postname. I thought maybe changing the code to RedirectMatch permanent ^/[0-9]{4}/0-9]{2}/[0-9]{2}/([a-z0-9]+) http://yourblog.com/$1

      But I see now how it would get all messed up.

      [ Reply..]

    15. Curtis, you can try that but I would rather see you do it the SEO friendly way. Let me know how it goes.

      [ Reply..]

    16. Gosh, I’ll have to read this over a few times. I am still going back and forth about moving over to Wordpress.

      [ Reply..]

    17. Great tutorial, BB. Duly Stumbled :)

      Actually it’s come at a good time because I’m thinking of moving my final Blogger site across to WordPress so I’ll be keeping this guide handy.

      Cheers!

      [ Reply..]

    18. I know what you mean DeafMom. Been there and done that. I’ve never met anyone yet who’s regretted making the move. You have everything to gain and nothing to lose. The deciding factor should be if you just want an online diary or a professional blog.

      If you do decide to make the move then you now have a tutorial to hold your hand through the process.

      [ Reply..]

    19. Thanks Mike. I’m looking forward to reading your guest post.

      [ Reply..]

    20. I will get round to writing one soon. Promise!

      [ Reply..]

    21. what if one is coming directly to wordpress from blogger blogspot? i mean if one is not using custom domain..

      [ Reply..]

    22. also, i already deleted most of my content from my blogspot blog, problem are in the google cache still, can i just redirect people to new wordpress url using this method?

      [ Reply..]

    23. does the RedirectMatch permanent ^/[0-9]{4}/[0-9]{2}/([a-z0-9]+) http://yourblog.com/$1

      yourblog.com, should be replaced by the my new blog’s url?or should i just leave the code as it is??

      [ Reply..]

    24. what if i deleted all my Blogger blogspot posts already? can the cache copies be still redirected towards the new wordpress url, using this method??

      pls. bear with my questions and i’m sorry if i asked one by one here..thank you

      [ Reply..]

    25. Seems like we went to same school of Hard Knocks except I missed changing feedburner links in the Header file because I thought the FeedBurner FeedSmith Plugin redirected the feeds to Feedburner.

      Do both solutions (your solution and the FeedBurner FeedSmith Plugin) work the same way?

      [ Reply..]

    26. Hey Boy, try this method first with just blogspot. I think it should work and I would like to know how it works for you. So do let me know.

      Redirects from Google’s cache should also work, but keep in mind once you tell Google to stop indexing the old blogspot blog the links will eventually disappear deep into the bowels of Googleland.

      Yes, “yourblog.com” should be replaced with your blog’s new address.

      [ Reply..]

    27. Debbie, FeedSmith will redirect your existing Wordpress subscribers to your Feedburner account. Changing the links in your header is a good idea so that your readers are offered just one feed option in their browser. Keep it simple — that’s my motto.

      [ Reply..]

    28. Thank you, Bloke!

      Your good idea is great for smooth sailing!

      On a unrelated topic, your “Notify me of followup comments via e-mail” didn’t notify me of your followup. If this only affects me than no problem since I can always check back later!

      [ Reply..]

    29. Hmm, I wonder if anyone else has noticed it. I will give it a test myself. Thanks for the heads-up Debbie.

      [ Reply..]

    30. WOW! My first reaction: Where was this post a month ago??!!

      Wow! You really know what you’re doing. I managed to get #1, #2 and part of #5 done, but not without a lot of hair pulling, cussing under my breath and some stomping around the room in frustration.

      I’m going to go back and do more of what you suggest. (and hopefully not mess anything up in the process!!)

      I did notice when I tried to move from www.brandandmarket.blogspot.com directly to www.brandandmarket.com I could not import directly, but rather I had to do the “two step” by creating a brandandmarket.wordpress.com account
      and then import from there to www.brandandmarket.com.

      I think that step is what annoyed me the most because so many posts had said, just import from blogger into wordpress, but it wouldn’t go. I kept getting error messages from google. Silly me, it took me a while to find a post that called out that problem with the wordpress software.

      Perhaps that part is fixed now & you can go directly… or perhaps I didn’t do every step, like park my blogspot in the parked domains…

      Thanks so much for all the detail. I’m going to call out your post because so many of my blogging buddies have asked how I did it and I had so much frustration, I’m not sure I wanted to send them on the same path that I went down.

      Chris Brown
      Branding & Marketing

      [ Reply..]

    31. Yes, I don’t why but sometimes we can only import from a wordpress.com account first. Perhaps that way they can keep track of users easier.

      Welcome to he community Chris.

      [ Reply..]

    32. Hi Bloke,

      Thank you a million times over for this tutorial. I don’t know what I would have done without it.

      Unfortunately, I’m having a problem getting the .htaccess and the ’NOINDEX, NOFOLLOW’ in Blogger to work. But if I understand what you said in your subsequent post, I should pretty much give up on the .htaccess. And maybe I shouldn’t do the ’NOINDEX, NOFOLLOW’ either because of the way I left the posts on my Blogger blog.

      I kept the post structure, but I removed all the text in each post and replaced it with a chirpy little message telling people the blog had moved. I also included the new WordPress permalink in each old post, so if people land on an old post, they can just click on the link and be right in the same post on the new blog. You can see it here: http://myhealtharticlesblog.blogspot.com/

      I don’t know if this was the right thing to do, but oh well; it’s done!

      Oh, and I love your idea of having Blogger host the URL before moving over to WordPress. I have one more Blogger blog to move (in addition to one on WordPress.com), so I think I’ll try that.

      Thanks again for taking the time to address all of this madness!

      Carla

      [ Reply..]

    33. You are most welcome Carla. It makes me feel all mushy inside when I hear that someone like yourself has appreciated my efforts.

      Regarding “nofollow”, I just use a plugin to resolve that issue. You can get it here:

      http://www.semiologic.com/software/wp-fixes/dofollow/

      If you don’t want the search engines to index certain docs on your Wordpress blog there are a ton of posts out there that you can Google showing you how to do it with .htaccess.

      If you are having a problem with editing the .htaccess file make sure you have changed it’s file permissions in your cPanel.

      Regarding changing the text in your posts, that is an extra precaution against being penalized by Google for double content. However, if you have followed my directions it shouldn’t be necessary.

      Thanks for the kind comments and please drop by and talk again soon.

      [ Reply..]

    34. Thanks so much for your answer.

      My permalink structure is set for “/%postname%/” and the permissions are set correctly for .htaccess; at least I think they are. They’re set for “write.” But there’s still no redirect. Maybe I wrote the code wrong. Is the following correct? (”http://myonlinehealtharticles.com” is the new WordPress blog)

      RedirectMatch permanent ^/[0-9]{4}/[0-9]{2}/([a-z0-9]+) http://myonlinehealtharticles.com/$1 # BEGIN WordPress

      RewriteEngine On
      RewriteBase /
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteRule . /index.php [L]

      # END WordPress

      My concern is that I messed up the original .htaccess code somehow when I downloaded and changed it. Like a dope, I didn’t save an original copy of the .htaccess file, so I have no reference point.

      I really appreciate your help!

      [ Reply..]

    35. This is what my .htaccess looks like Carla:

      RedirectMatch permanent ^/[0-9]{4}/[0-9]{2}/([a-z0-9]+) http://blogbloke.com/$1

      # BEGIN WordPress

      RewriteEngine On
      RewriteBase /
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteRule . /index.php [L]

      # END WordPress

      Try putting the # BEGIN WordPress part on a separate line after the redirect code. Put .htaccess file into your /public_html/ folder via your cPanel and make sure you have checked all the boxes on your file permissions so it reads “777″.

      Remember, .htaccess is simply a text file and you should not create it using something like MS Word which adds extraneous code. Use something like windows notepad or the code editor in your cPanel.

      [ Reply..]

    36. Thanks for giving me the exact code.

      I think there’s some fundamental piece I’m missing here, because even with using your code/my URL, configuring it in Notepad exactly as you indicated and modifying the permissions in GoDaddy’s “Hosting Control Center,” the redirect is still not working.

      Here are some screenshots of the steps I took: http://b2bcontentsolutions.com/htaccess1.htm

      There was no reference to “777″ anywhere after changing the permissions, so I’m guessing I’ve been trying to modify them in the wrong location on GoDaddy’s site. Any suggestions?

      You’re a saint for helping me. I appreciate it so much!

      [ Reply..]

    37. Carla, if you click all of the boxes in your cPanel your file permissions level should read “777″. Unfortunately your Panel looks different than mine because I don’t host with GoDaddy.

      Hmm, all I can think of is the .htaccess file might not be in the proper folder (i.e. the root directory). At this point I would contact GoDaddy support.

      You might also want to click the link that I gave in my post for more information on .htaccess. I would also go over all the steps again in my post and make sure that you haven’t missed something.

      [ Reply..]

    38. I’m going to call GoDaddy this morning and see what’s up. Thanks again for all your help.

      [ Reply..]

    39. Hi Blog Bloke, been following your steps and i’ve made it to the .htaccess section. I’ve created the file, made sure it’s named only htaccess, uploaded it to root directory of blog, set the permissions to 777, changed the permalink structure. My old blogger site does not redirect at all. Could it be that i didn’t have a custom domain to park because it is a .blogspot.com address? How does blogger know to redirect if all the scripts are in my host directories? Should i be doing something at the blooger dashbaord?

      Great post by the way, just this little snag to overcome. I notice that other people have mentioned no redirect too. Did you manage to solve these? Maybe i have the same issue.

      Thank you

      Daniel

      [ Reply..]

    40. Daniel, have you followed step #1 and changed the Name Servers setup in your URL host (e.g. GoDaddy) according to your blog host’s instructions?

      Your new blog host company should have emailed you the directions how to do this. If not, then give them a call.

      Have you also left your Custom Domain setup on Blogger (i.e. don’t revert it back again to Blogspot in your publishing settings).

      [ Reply..]

    41. Thanks for the speedy reply BB. I didn’t receive any NS in the email from my host company. I’ve emailed them and left a ticket in the help desk requesting these. That’s been 2 days so far…not impressed.

      I’ll let you know if this fixes the redirect.

      About the parked domain thing. I was using a .blogspot.com domain (free version). Therefore, i’m assuming I shouldn’t park it. Is that right?

      Cheers.

      [ Reply..]

    42. If you put your custom domain name in your Blogger dashboard your blogspot address will still redirect. Click on the two links below and see what I mean:

      http://www.instabloke.com/2006/11/10-killer-ways-to-increase-traffic-and.html

      AND

      http://www.blogbloke.com/2006/11/10-killer-ways-to-increase-traffic-and.html

      [ Reply..]

    43. I tried that but I’m not allowed to use a parse. Therefore .com/blog is not allowed. This could be the whole reason for the redirect not working. You do mention that it be used in the root directory. The thing is, I have other ideas for the .com address. I’m still waiting for the NS and IP address from my hosts. It takes the p**s really.

      Hope you don’t mind me writing about my trials and tribulations on my blog?

      Daniel’s last blog post..My attempt to migrate from blogger to WordPress.

      [ Reply..]

    44. No worries Daniel. This works because I use it on this blog. I would never recommend something that I haven’t tried and tested myself.

      I recommend getting rid of the /blog part in your url and keep it simple. I see no advantage to using it.

      In my case I’ve put .htaccess in the /public_html/ directory that is created in a normal Wordpress installation.

      I think you’re trying to get too fancy with it. Keep it simple.

      [ Reply..]

    45. I’m sure it works and the advice you’ve provided has helped me migrate with little trouble. Some people talk of days for a migrate but I managed it in a few hours. As I say, i’m waiting for the name servers to come through and then we’ll see what happens.

      If that doesn’t work then I’ll contemplate losing the pagerank and setting up a 301 redirect or moving the WP install to .com like you say.

      Daniel’s last blog post..How Not To Tread In Dog Shit

      [ Reply..]

    46. just… wow
      what an impresive article, i can see you did the leg work for this one *claps* i applaud you

      this is one of the more difficult things to do when it comes to blogging and i think you pretty much covered it

      i’m using blogger’s free hosting at the moment, so it would be much harder for me to do that (since i’d have to find a domain name, a host, etc.) but the info is still good to have

      mmm, could you maybe direct me to some good hosts & domain registers… my ISP only allows like 25 mb of traffic =/

      Zander Erasmus’s last blog post..Tips for 3D Students: Interviews

      [ Reply..]

    47. Thanks Zander. My tutorials do take a great deal of work and it’s always appreciated when I get a comment such as yours.

      I use Bluefur hosting and have no complaints so far, but I’ve also heard good things about Small Orange and Dream Host.

      I also use GoDaddy for my domain name.

      It’s always best shop around on google for user opinions before signing up.

      [ Reply..]

    48. Thanks for the advice,
      I think I’ll stay on the free networks like blogger for now till I can make up my mind…

      probably once i get enough money from adsense or my freelancing work will I start doing some serious research on which ones would be more beneficial for me.

      Zander Erasmus

      Zander Erasmus’s last blog post..Tips for 3D Students: Networking - Work

      [ Reply..]

    49. hi.. the steps you’ve written here.. works like a charm..

      thanks a million..

      lestat’s last blog post..Weekend Shot: NBK’s Free Patchi Chocolates

      [ Reply..]

    50. I’m glad to hear that it worked for you Lestat. It’s comments like yours that keep me going. Cheers!

      [ Reply..]

    51. Hello,
      I wish I’d read your tutorial before I tried to make the change. I had a custom domain on blogger but right after I installed wordpress I went to blogger and switched back to my old blogspot address. I futher screwed things up by transfering my domain name publicitystuntn.com to hostgator. And now the domain name is in limbo and I can’t get into my wordpress blog because of this. I guess my question is once I get my domain to point to the wordpress blog, is there anything I can do to save my pagerank and other things? note: hostgator uploaded my blogger blog to wordpress already, I just can’t login myself to see what it looks like…any advice would be greatly appreciated

      [ Reply..]

    52. …or better yet given my mistakes in the beginning is there anywhere I can pick up in your tutorial to get the same outcome?

      [ Reply..]

    53. Hi Tory. It sounds like a horror story that I saw on the late night show. After you follow my directions and get things working again the right way, Google will follow the redirects and eventually update your pagerank accordingly.

      [ Reply..]

    54. thanks for your response, I guess my question is, at what point in your tutorial should I pick up given the fact the first couple of steps I’ve already screwed up. Any insight would be appreciated.

      Thanks

      [ Reply..]

    55. I would recommend starting at the beginning. That way you won’t miss any steps. Better safe than sorry is my motto. It won’t take long and it won’t hurt a bit. Promise :-)

      [ Reply..]

    56. Hi Blog Bloke,

      I’m undertaking a blogger to self-hosted wordpress migration for a friend of mine based in the States. He currently has a .blogspot.com/ address and its being moved to a new mydomain.tv address.

      My question is, do I need to convert his current blogspot.com blog to his new ‘custom’ mydomain.tv address before going through the process you describe in this post? You describe the process for converting to a custom domain in an earlier post.

      As a side note, I have spent many hours looking for the solution to migrating from blogger to WP and yours certainly seems to be the most comprehensive - thanks for putting the time into this, its a big help!

      Cheers,
      Steane

      [ Reply..]

    57. Hi Steane, since your friend has never converted to a Custom Domain then it isn’t necessary. The point of a redirect is to ensure the old backlinks will follow to the new Wordpress linkage structure. So in your friend’s case you can do it either way you see fit.

      [ Reply..]

    58. Hey BlogBLOke,

      i have a problem , when i include the redirect code in the htaccess file and try to access my site it is giving internal server error…

      please find the screenshots here:

      error: http://www.shareapic.com/public/view/full/24996
      my htaccess file screenshot: http://www.shareapic.com/public/view/full/24996

      i hope you will help me in this….

      waiting for your reply…..

      Thanks in advance
      Suresh:)

      Suresh’s last blog post..4 from 3 and 5

      [ Reply..]

      Blog Bloke on May 24th, 2008 at 1:25 am replied...

      Sounds like you are making the same mistake as Javi. When you copy my code be sure that you paste it exactly as shown on one line without any spaces or line breaks.

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on May 24th, 2008 1:25 am:

    59. Your post seems like exactly what I need. The bad news is that it doesn’t work for me. :-( I have links in blogger which have the path year/month/filename.html

      My new path in wordpress is /index.php/year/month/filename.html

      I am expecting that someone who goes to myblog.com/year/month/postname.html is re-directed to myblog.com/index.php/year/month/postname.html

      I did add index.php before $1 as in http://yourblog.com/index.php/$1

      Anything I should be doing differently?

      In any case, I am happy to have come across your blog.

      [ Reply..]

      Blog Bloke on May 23rd, 2008 at 5:17 pm replied...

      Like I said above — “This method assumes that you will be using the permalinks custom structure /%postname%/ “. Change your permalink options and it will work. This is the best permalink structure for SEO optimization in my opinion.

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on May 23rd, 2008 5:17 pm:

    60. I get an internal server error when I open my dotcom after i paste the code you provided. When I delete the code, my site goes back up again. Weird.

      My blogger blog for migration has a blogspot extension still. Is there anything more I should do aside from forwarding it to my new domain name?

      Appreciate the time you spend helping us folks. Thanks.

      [ Reply..]

      Blog Bloke on May 23rd, 2008 at 10:21 pm replied...

      I’m sorry but it’s impossible for me to tell with the information you’ve given me. This will work if you follow all of the steps exactly as shown. You must have missed something so try again and start over from the beginning. Also, when you copy my code be sure that you paste it exactly as shown as pure text and without any spaces or line breaks.

      [ Reply..]

      Javi on May 23rd, 2008 at 10:26 pm replied...

      I got it to work already. Instead of putting the http://yourblog.com in a second line, i didn’t break the line and now it’s working just fine. I’m not sure if I will still have to wait some time though but the redirect confirmation from blogger is driving me nuts. still at least all the links now point to my new domain. Thanks man.

      [ Reply..]

      Blog Bloke on May 24th, 2008 at 1:03 am replied...

      Yes, the Wordpress post editor wraps the text so it looks like it is 2 lines, but it is actually just one long line of code.

      Glad you finally got it working Javi.

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on May 24th, 2008 1:03 am:

      Javi (@blogbloketips) reply on May 23rd, 2008 10:26 pm:

      Blog Bloke (@blogbloketips) reply on May 23rd, 2008 10:21 pm:

    61. Hey, thanks for the cool tutorial!
      Unfortunately I’m having a bit of trouble. I’ve added the lines (and edited the URL) in the .htacess file on my wordpress host (goDaddy). And changed WP permalinks to /%postname%/ which is working fine.

      However when I redirect my blog - http://iamcyberphobic.blogspot.com it just goes to www.blackvatican.com
      This could be because I just used java to redirect it, if so, what code did you add to blogger to cause your domain to redirect properly, or did you edit the .htaccess of the domain you bought for your blogger account?

      Thanks.

      Flynn’s last blog post..Swingline baby!

      [ Reply..]

      Blog Bloke on Jun 3rd, 2008 at 1:14 pm replied...

      Hi Flynn. You’ve confused me. If it’s redirecting then what’s the problem? Or are the individual post pages not redirecting? Neither does htaccess have anything to do with the domain so if you are using java please remove it.

      You should also read my other tutorial first http://www.blogbloke.com/custom-domain-blogger-dns-seo-godaddy-blogger-custom-domains-best-setup-for-optimizing-your-blog-pagerank/ to make sure you set up your blogger domain properly.

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on June 3rd, 2008 1:14 pm:

    62. Hey Bloke, I found your site while looking for some resources to help redirect my Blogger posts to Wordpress. Your post did the trick, with a slight tweak I found on another site.

      I renamed my WP directory to ‘blog’, so that must be added to the URL. Also because of the Blogger way of putting posts in the /year/month/postname.html format, you would need to add ‘$2$3′ to the end of the URL.

      RedirectMatch permanent ^/[0-9]{4}/[0-9]{2}/([a-z0-9]+) http://www.yoursite.com/blog/$1$2$3

      Thx,
      JP

      [ Reply..]

      Blog Bloke on Jun 13th, 2008 at 10:30 pm replied...

      Glad it helped JP, but I wouldn’t recommend using a blog subdomain for reasons that I’ve already explained here: http://www.blogbloke.com/custom-domain-blogger-dns-seo-godaddy-blogger-custom-domains-best-setup-for-optimizing-your-blog-pagerank/. In the long run you will regret using a subdomain like I did. I hope I can save you that hassle.

      [ Reply..]

      JP on Jun 13th, 2008 at 10:34 pm replied...

      I’m not worried about SEO. My site gets enough word of mouth and search engine traffic that it doesn’t bother me to be less than fully optimized. Besides, the /blog/ part reminds people that it’s a blog :)

      Thx,
      JP

      [ Reply..]

      JP (@blogbloketips) reply on June 13th, 2008 10:34 pm:

      Blog Bloke (@blogbloketips) reply on June 13th, 2008 10:30 pm:

    63. This is quite instructive. It will be of immense help to those who are afraid of leaving blogger because of the PR and backlinks they have acquired over time. Thanks for sharing.

      Tony’s last blog post..Entrepreneurship Lessons From Nigerian June 12 Story

      [ Reply..]

    64. OK - this may seem like a really dumb question.

      I used to have my blogger blog posted via FTP to an .html page on my website. I have now migrated over to Wordpress to publish to a /blog/ page on my website.

      How can I tweak your process to redirect my blog posts and keep my Google juice. I currently just have a standard permanent redirect set up via cpanel.

      Thanks

      [ Reply..]

      Blog Bloke on Jun 29th, 2008 at 9:06 am replied...

      It seems to me that if you revert it back to being hosted on Blogger like so:

      http://www.blogbloke.com/custom-domain-blogger-dns-seo-godaddy-blogger-custom-domains-best-setup-for-optimizing-your-blog-pagerank/

      and then follow the instructions here it should work.

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on June 29th, 2008 9:06 am:

    65. Hi,

      What if my blogger custom domain is the same domain I want to use with wordpress? could you please help?

      Thanks!

      [ Reply..]

      Blog Bloke on Jun 30th, 2008 at 1:47 pm replied...

      Not a problem Chris. Just follow the directions.

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on June 30th, 2008 1:47 pm:

    66. Hi,
      I’ve got a problem that’s documented here:
      http://groups.google.com/group/blogger-help-publishing/browse_thread/thread/4e907fdd44c13721?hl=en

      It has to do with getting the redirect to work in Internet Explorer. How do you get Internet Explorer to accept the Blogger redirect?
      Jill

      [ Reply..]

      Blog Bloke on Jul 3rd, 2008 at 5:42 pm replied...

      Hi Jill. Follow my directions here: http://www.blogbloke.com/custom-domain-blogger-dns-seo-godaddy-blogger-custom-domains-best-setup-for-optimizing-your-blog-pagerank/ and then follow the directions in this post. It works for me and hundreds of satisfied customers. ;-)

      [ Reply..]

      Jill on Jul 6th, 2008 at 10:59 am replied...

      Hi,
      I went to your other post, and when I go to this link:
      http://www.blogbloke.com/

      I get the exact same error message in Internet Explorer that I’m getting from going to the blog I’m working on.

      So if people who use IE try to access your old blogger blog, they go nowhere….could you please verify this issue exists?

      Jill

      [ Reply..]

      Blog Bloke on Jul 6th, 2008 at 4:21 pm replied...

      Jill, you are trying to redirect the old blogspot address. That won’t work because I changed it to the custom domain url in the publishing settings which overrides blogspot.

      Like I already said you need to first follow my directions for setting up your custom domain:

      http://www.blogbloke.com/custom-domain-blogger-dns-seo-godaddy-blogger-custom-domains-best-setup-for-optimizing-your-blog-pagerank/

      And then implement the htaccess redirect:

      http://www.blogbloke.com/migrating-redirecting-blogger-wordpress-htaccess-apache-best-method/

      Just so you know that it works, click on my old address and you will see the redirect in action:

      http://instabloke.com

      I hope this helps.

      Cheers!

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on July 6th, 2008 4:21 pm:

      Jill (@blogbloketips) reply on July 6th, 2008 10:59 am:

      Blog Bloke (@blogbloketips) reply on July 3rd, 2008 5:42 pm:

    67. So I wanted to tell you my situation so you could tell me if this would work for me (you would be surprise how many people don’t have tutorials on this…so thanks).

      I have been writing a blog on blogger for the past 3 years. I don’t use custom domain in blogger, but I want to move over to wordpress with a new custom domain now. Will these steps still work?

      What do i need to change with step 3 if i don’t use blogger custom domain?

      thanks in advance.

      [ Reply..]

    68. Hi,

      Really liked your article. I am trying to migrate my site from blogger to wrodpress. I am facing some problems. Firstly, I have a custom domain on blogger, then do I need to park domain for transfering?
      Secondly, I am not getting clear with the idea of .htaccess file. Not able to proceed with step 4. Can you pls explain me the step 4.

      Thanks,

      http://www.aboutinterview.com

      [ Reply..]

      Blog Bloke on Jul 17th, 2008 at 5:41 pm replied...

      No, you only need to park an old domain if you are using a different one now than what you were using previously.

      .htaccess is just a text file. Use something like notepad (for windows users) to create it. Don’t use a word processor like microsoft word because it will add extraneous code.

      Just copy and paste the code I gave you above into a text file and then upload it to your blog’s root directory and watch the magic begin.

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on July 17th, 2008 5:41 pm:

    69. I followed your instructions and everything worked great, except for one thing. It appears my redirect is just searching for the first word of the post.

      so if I have two posts in my new wordpress with the title:

      www.mysite.com/name-of-the-post

      and

      www.mysite.com/name-of-another-post

      it seems to just find the “name” and go to the first one, instead of matching everything else.

      Any reason why this might be happening that you know of?

      [ Reply..]

      Blog Bloke on Aug 4th, 2008 at 2:08 pm replied...

      Hi Brent. Yes, the occasional title will slip through. Like I said earlier nothing is 100% foolproof, but considering the alternative 95% ain’t bad.

      [ Reply..]

      Brent on Aug 4th, 2008 at 2:09 pm replied...

      Actually I figured it out. You have to put “\-” at the end or else it just reads up to the first dash.

      ([a-z0-9\-]*)

      [ Reply..]

      Blog Bloke on Aug 6th, 2008 at 7:39 pm replied...

      Hi Brent. I’m no longer using redirects because Google has caught up and reindexed my WP blog, and I’ve removed the old blog from the SERPS. So I can’t confirm your change to the code. However I want to caution you that Wordpress might alter some of the permalinks slightly during the import process so you will never get 100% compatibility.

      [ Reply..]

      Blog Bloke on Sep 8th, 2008 at 7:53 pm replied...

      UPDATE: I’ve tried Brent’s suggestion and it didn’t work for me, so I recommend using the code exactly as I’ve shown.

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on September 8th, 2008 7:53 pm:

      Blog Bloke (@blogbloketips) reply on August 6th, 2008 7:39 pm:

      Brent (@blogbloketips) reply on August 4th, 2008 2:09 pm:

      Blog Bloke (@blogbloketips) reply on August 4th, 2008 2:08 pm:

    70. Did you have any problems with your archives when you switched over? My wordpress when i go to mysite/2008/02 just goes to the homepage. I am wondering if it is because it is redirecting it there.

      [ Reply..]

      Blog Bloke on Aug 6th, 2008 at 3:42 pm replied...

      That would be a problem with your theme.

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on August 6th, 2008 3:42 pm:

    71. You say, “copy this line”:

      RedirectMatch permanent ^/[0-9]{4}/[0-9]{2}/([a-z0-9]+) http://yourblog.com/$1

      before the

      # BEGIN WordPress

      But, I don’t have a “# BEGIN WordPress” in the first place? Can you share the whole .htaccess code?

      [ Reply..]

      Blog Bloke on Aug 9th, 2008 at 11:23 pm replied...

      Then don’t worry about it Joly. Just go ahead and try it.

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on August 9th, 2008 11:23 pm:

    72. This was a great article. Thanks!

      [ Reply..]

    73. Hey BB,

      I love that you are willing to take the time to write up such helpful guides for all of us regular folks in cyberland. Your work is generous and exceptionally helpful. So, thank you. I’m about to try to redirect all the posts from my old site, www.theargentinepost.com - which is blogger-based - to my new site - www.argentinepost.com - which runs on Wordpress. In the time that has passed since you first posted this, have you learned anything new that would make you change your mind about redirecting? Are there any new plugins available that make all this a snap? Or is your original method still the best out there?

      A second and final question: I bought www.theargentinepost.com from Blogger, through Godaddy. Do you know if there is any way I can free up that domain and associate it directly with my www.argentinepost.com account?

      Thanks again for keeping up this blog. It is very helpful.

      Cheers,
      Taos

      [ Reply..]

      Blog Bloke on Aug 23rd, 2008 at 12:28 am replied...

      Hi there Taos!

      Those are tough questions. I’ll answer the easiest ones first.

      1. There are no plugins that work as far as I know for redirecting.

      2. Yes, I still think my method is the best. I spent a great deal of time investigating the issue and to my knowledge this is the best and easiest method.

      3. I’m not as concerned with redirecting now as I once was because the search engines have caught up and reindexed my blog. Nevertheless, for the first few months at least I think it is important to have the redirect set up.

      4. As far as your last question is concerned I’m not sure if I understand what you are asking. It’s a little confusing to me and can you give me more details?

      Thanks.

      [ Reply..]

      Taos Turner on Oct 5th, 2008 at 8:34 pm replied...

      Blog Bloke,

      You’re a star! Truly. Thank you so much for your kick-ass and exceptionally generous advice. I really appreciate it. If you ever make it to Argentina, check out my blog and look me up.

      Take care and many thanks for keeping at this. I know I’m not the only one who very much appreciates what you’ve been doing here.

      Taos

      [ Reply..]

      Blog Bloke on Oct 6th, 2008 at 12:37 pm replied...

      Thank you Taos. That’s very kind of you to say so. It makes me want to keep writing all the more.

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on October 6th, 2008 12:37 pm:

      Taos Turner (@blogbloketips) reply on October 5th, 2008 8:34 pm:

      Blog Bloke (@blogbloketips) reply on August 23rd, 2008 12:28 am:

    74. Thanks for this tutorial. I has been wondering how to did that but now i know.

      [ Reply..]

    75. Great post. Several of your posts have convinced me to make the move to WordPress at long last! Because of your trials and your kindness and time in posting this tutorial, I should have no problems keeping what little juice Google gave me in the first place ;)

      I’m currently tweaking the set-up in a test blog. I’ll come share the URL of my post once it goes public to my custom domain name!

      tatas last blog post…The Jug Band Jubilee

      [ Reply..]

      Blog Bloke on Aug 26th, 2008 at 2:20 pm replied...

      Thanks Tata, but please make sure you want to switch for reasons that are right for you and not just because of my or anyone else’s say-so. It still comes down to personal preference, and don’t forget — at least Blogger is free.

      [ Reply..]

      tata on Aug 26th, 2008 at 2:33 pm replied...

      Indeed. I’m going because I’ve been frustrated with Blogger for a lot of the same reasons as I’ve read here. My blog is small enough that free hosting should work fine for me for a while and I’ve had my own domain for a few months now. As I stated before, I’ve been playing in WordPress and I am really enjoying the new (to me) interface. Just trying to get used to it.

      tatas last blog post…The Jug Band Jubilee

      [ Reply..]

      tata (@blogbloketips) reply on August 26th, 2008 2:33 pm:

      Blog Bloke (@blogbloketips) reply on August 26th, 2008 2:20 pm:

    76. Hi!
      In this tutorial, you also migrated from one custom domain to another.
      Is the procedure the same (minus the parking part) if I already have a custom domain and I’m trying to move the exact one to self hosted wordpress?
      I mean, the redirection thing, works the same if you’re not parking any domain?

      Hope I made sense, lol. I’m a complete noob to these “domains and hosting” thing
      thanks!!
      Paula

      [ Reply..]

      Blog Bloke on Sep 1st, 2008 at 4:46 pm replied...

      Yes, absolutely

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on September 1st, 2008 4:46 pm:

    77. Well hello again :) I’m a little puzzled after reading *all* the comments, cause this old post that you serve like example isn’t redirecting as it should:
      http://www.blogbloke.com/2007/12/flexibile-blogging-join-revolution.html

      why is that? is this method no longer working? I am missing something, probably :)

      thanks a LOT for your kindness and help, much appreciated <3

      [ Reply..]

      Blog Bloke on Sep 1st, 2008 at 6:10 pm replied...

      Paula, that’s because I’ve turned off my redirects. I no longer need it because Google has caught up and reindexed everything.

      So all I can say is just trust me when I say that it works. Or trust all of the people who have commented here and are using it.

      [ Reply..]

      Paula on Sep 1st, 2008 at 8:36 pm replied...

      Hey, of course I trust you. I will do it. I just wanted to understand everything I was doing and how it worked (kinda) and that little bit puzzled me like I said. So that way I can learn :)
      Thanks again.

      [ Reply..]

      Blog Bloke on Sep 1st, 2008 at 9:30 pm replied...

      No worries.

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on September 1st, 2008 9:30 pm:

      Paula (@blogbloketips) reply on September 1st, 2008 8:36 pm:

      Blog Bloke (@blogbloketips) reply on September 1st, 2008 6:10 pm:

    78. Hi Blog Bloke :)
      Any tips on how to fix internal links in the move? I have a Blogger blos I’m intending to migrate to Wordpress - it has more than 1000+ posts - most of them with internal linking - so it will be really a pain to fix each one by hand.

      Hope you have any idea. I just only found this: http://www.mydigitallife.info/2007/10/01/how-to-move-wordpress-blog-to-new-domain-or-location/ it says something about applying a SQL command, but I’m clueless.

      thanks in advance

      [ Reply..]

      Blog Bloke on Sep 23rd, 2008 at 12:30 pm replied...

      That’s something I’ve promised myself to look into and thanks for reminding me. I’ve made a note of it so stay tuned… sounds like another post in the making.

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on September 23rd, 2008 12:30 pm:

      Blog Bloke on Oct 10th, 2008 at 9:23 pm replied...

      I found it Cécile. Grab this nifty plugin to fix your internal blogspot links.

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on October 10th, 2008 9:23 pm:

    79. Hi again BlogBloke!
      I finally decided to move to wordpress, already bought a domain and hosting… but then, when setting my custom domain in Blogger and that domain is pointing to my hosting, Blogger doesn’t redirect anymore: instead there’s a page saying that my blog is redirecting the user and they don’t know if it’s spam, secure or anything , and two buttons “yes and no” to continue.

      I cannot believe how sad I am… I came to decide too late.

      Is there anyway to surpass this problem?

      [ Reply..]

      Blog Bloke on Sep 23rd, 2008 at 12:27 pm replied...

      I’ve noticed that myself. It’s something that Google/Blogger has recently implemented on it’s server-side and I don’t think there is anything we can do about that. It just imposes an extra click on the reader.

      I’m not concerned because it only affects IE users and what’s important is the redirects are in place. The search engines will make a note of the change and adjust accordingly the next time your site is indexed.

      So don’t worry. In time it will work itself out.

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on September 23rd, 2008 12:27 pm:

    80. I have this great site bookmarked. Thanks, Kredit

      [ Reply..]

    81. Nice tip, except for those of us who find this entirely too much trouble. I’ve been using Blogger since 2005 and only recently moved to “New” Blogger, which I’m not all that happy with.

      I saved every post I’ve made on my hard drive because if this doesn’t work as planned…I won’t lose everything.

      My question: Is there a way to just import the Blogger archives into Wordpress or does this need to be completed manually?

      [ Reply..]

      Blog Bloke on Oct 3rd, 2008 at 3:09 pm replied...

      Hi Georjina. Like they say “no pain, no gain”. :-)

      It may seem like a lot of work but you can do it in a few minutes and the benefits are well-worth the effort. So I highly recommend you bite the bullet and give it a whirl. Upgrading to something new may seem like a nuisance at first because of the learning curve, but it is unfortunately a necessary evil if we want to grow as a blogger.

      The answer to your question is yes, you can import your Blogger posts into Wordpress.

      It’s a good idea to backup your posts and a much-needed feature that Blogger has added. So even if you decide to remain on Blogger you can create a free Wordpress.com account and make another backup there as well as on your hard drive.

      Thanks for the question.

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on October 3rd, 2008 3:09 pm:

    82. I knew it! Well, guess I’ll be walking around with an ice pack this week while I attempt to get my archives from Blogger to my Hostgator WP blog….oh, the agony:)

      Thanks Bloke! Nothing like a reality check when whining seems easiest;)

      [ Reply..]

      Blog Bloke on Oct 5th, 2008 at 2:24 am replied...

      Oh, it won’t be so bad. Promise. By the way, a little whining never hurt anybody. I do it all the time. Sometimes my wife has to close the door to Blokester Central to keep the noise down. :-)

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on October 5th, 2008 2:24 am:

    83. Hi there… after migrating from blogger to wordpress last night, you have NO IDEA how many blogosphere posts claim to have the answer for fixing the damned blogger urls from a redirection standpoint.

      I read your stuff above and skimmed the comments. Everything is working precisely as it should, minus one point:

      If I make the permalink change to make it SEO-friendly, like http://www.ariwriter.com/social-media-marketing-tip-pause/ but if the search engine points me to http://www.ariwriter.com/2008/09/social-media-marketing-tip-pause.html, it won’t redirect.

      So for the time being, I changed the permalink to reflect “month and name” so http://www.ariwriter.com/2008/09/social-media-marketing-tip-pause.html redirects to http://www.ariwriter.com/2008/09/social-media-marketing-tip-pause/

      Thoughts? You’re a life saver…

      Ari

      [ Reply..]

      Blog Bloke on Oct 11th, 2008 at 5:20 pm replied...

      Hmm, not sure why because my Blogger setup is the same and it works fine for me. All I can say is go over the settings again and make sure it’s exactly the same as I show in the post.

      For example this redirects just fine:

      http://www.instabloke.com/2007/12/flexibile-blogging-join-revolution.html

      You also need to wait 24 hours to make sure all of your DNS settings have fully propagated.

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on October 11th, 2008 5:20 pm:

    84. nice post. i bookmarked it already for future reference. thanks

      [ Reply..]

    85. THANK YOU - it worked! It might be worth emphasing that if you are on blogspot you have to redirect you blospot to your new custom domain on the blogger dashboard for anything else to work! Which it does, like a charm - except for the stupid google message you are being redirected but you can’t do anything about that!

      lissies last blog post…Technical problems: comments

      [ Reply..]

      Blog Bloke on Nov 24th, 2008 at 2:50 pm replied...

      Happy days :-)

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on November 24th, 2008 2:50 pm:

    86. Thanks for this wonderful post.
      I have two questions:

      1) I would like to transfer from blogger custom domain to wordpress(same domain). ie from xyz.com on blogger to xyz.com on wordpress.

      Acc to step 1, we should change the Name Server settings to point to the wordpress host’s server. Don’t you think changing the “Name Server settings” BEFORE exporting the custom domain blog into wordpress will render the blog inaccessible for wordpress import functionality?

      2) I read on one of the blogs that though posts, comments and users get transferred but the images doesn’t, they still hot link to the your blogger account. Were you able to transfer the images successfully through the wordpress import functionality?

      I trust I am clear with my questions.

      ROWs last blog post…2 excellent tools to get ideas for your next post and to find the hottest keywords in your niche

      [ Reply..]

      Blog Bloke on Dec 5th, 2008 at 7:08 pm replied...

      Hi Row.

      1. I think you are confusing the terms exporting and importing.

      2. When you import links they stay the same. So if they are already hotlinked to Blogger then they will stay hotlinked.

      I’ve heard of a plugin that can change that but I’ve also heard it has database risks so I never bothered.

      Go ahead and make the switch. You’ll be happier for doing.

      Thanks for dropping by.

      …BB

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on December 5th, 2008 7:08 pm:

    87. this could have been the most helpful post i have ever found about anything….that htaccess trick was amazing and brilliant, thank-you so much.

      [ Reply..]

    88. God-flippin-bless you. Well, if this actually works, that is. I have been seriously ready to just stick with blogger because just the idea of the move has about made me cry. The best part about this… I think I actually understand it. And I’ve got a lot of internal links and have been looking through the plug-ins to find something to reformat them. Seriously, so very helpful.

      I’ll be sure to come back when it actually works. (Gotta pretty up the new site before I start sending my readers there, though.)

      Wendys last blog post…How Not to React

      [ Reply..]

    89. Though Blogger kinda gets annoying sometimes, I think I’ll stick up with it..It’s kinda fun creating those widgets in Blogger. :)

      [ Reply..]

    90. wow .. the tut looks simple.thank you for such a nice post.I have always wanted to switch over to wordpress especially after trying wordpress locally on my pc.

      [ Reply..]

      Blog Bloke on Feb 23rd, 2009 at 3:59 pm replied...

      Go for it!

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on February 23rd, 2009 3:59 pm:

    91. Thanks for the great post! I’ve been looking at how I shift my blog from its blogspot domain to thinkingcities.org, and I think I have most of the details worked out from the info here.

      Just one question: my blogger feed currently has a bunch of subscribers; if I want to delete my blogger blog, is there a way to automatically redirect those subscribers to a new feed?

      [ Reply..]

      Blog Bloke on May 17th, 2009 at 1:01 pm replied...

      @Sam, sorry for getting back so late but I have been taking a break from blogging. I wouldn’t recommend deleting your old blogger blog. Some splogger will just take the name. Turn off notifications to search engines in your settings.

      On your old blog make the last post explaining you have moved and ask your readers to resubsribe the new feed. In your Blogger Settings add your new feed url where is says “Post Feed Redirect URL”.

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on May 17th, 2009 1:01 pm:

    92. Thank you for #5. As simple as that one is I had not thought of it at all. Went right in and changed it.

      [ Reply..]

      Blog Bloke on May 21st, 2009 at 5:03 am replied...

      @Laura .. yes it is often overlooked and extremely important. You don’t want to be dinged by Google for duplicate content.

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on May 21st, 2009 5:03 am:

    93. I have moved my blog from blogger to wordpress. But I don’t have a cpanel on my dashboard. Is this option only for those who have chosen the upgrade from wordpress? Since I am using the free version, is there something different I should be looking for to redirect my blog?

      I am a novice so please keep it simple for me:)

      [ Reply..]

      Blog Bloke on Jun 20th, 2009 at 7:49 pm replied...

      @Inge, Hi there. There is no cPanel with the free Wordpress version so unfortunately you cannot use htaccess to redirect your blog.

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on June 20th, 2009 7:49 pm:

    94. Blog bloke, thanks for your tutorial but the first step confuses me. I’m cool with the others.

      I have a Blogspot that’s established (1600 posts), and which I imported to a Wordpress self hosted.
      So now I have two sites with the same articles.

      What I want to do is have anyone who goes to the blogspot, forwarded to the exact post on the Wordpress and yet retain juice.
      But, I also want search engines to completely re-index the pages with the new domain name.
      I think it’s possible with this tutorial

      [ Reply..]

      Blog Bloke on Sep 8th, 2009 at 12:49 pm replied...

      @Steupz, this tutorial will do what you want. Follow the steps…

      [ Reply..]

      Blog Bloke (@blogbloketips) reply on September 8th, 2009 12:49 pm:

    95. Hi Blog Bloke,

      Thanks for this post. I had to create a subdomain blog.domainname.com to setup the redirection in Blogger as it does not allow for paths in URLs. The blog really resides at domain.com/blog. Modifying the .htaccess file did not allow for a seamless redirection, it took quite a while and would load the Blogger page then refresh to the new WordPress blog page. Redirecting to the subdomain seems to be working ok however I’m wondering if there is anyway to remove / bypass the blogger redirection page that appears?

      Thanks,
      Michelle

      [ Reply..]

      BLOGBloke on Nov 20th, 2009 at 4:13 pm replied...

      @Michelle, you do not need a subdomain for it to work. A subdomain is also a bad idea for SEO. You need to go over everything again. A small mistake is all it takes.

      I don’t know of any way to get around Google’s block except to say it might go away on it’s own after awhile.

      [ Reply..]

      Michelle on Nov 23rd, 2009 at 3:09 pm replied...

      @BLOGBloke,

      I decided to get rid of the Blogger redirect as the redirect via modification to .htaccess works, though a little slow. Would love to have it be as speedy as for your example above. As the owner of the blog was not using a custom domain on Blogger previously, I don’t think parking or DNS comes into play here. (Am I wrong about this?) Importing the content from Blogger with custom permalinks worked like a charm incidentally :)

      Many thanks..

      [ Reply..]

      BLOGBloke on Nov 23rd, 2009 at 9:01 pm replied...

      @Michelle, redirect speeds will depend on the blog host’s servers and internet connection. You only need to park a custom domain if you were using a different one previously. Glad to here things are coming together now.

      [ Reply..]

      BLOGBloke (@blogbloketips) reply on November 23rd, 2009 9:01 pm:

      Michelle (@blogbloketips) reply on November 23rd, 2009 3:09 pm:

      BLOGBloke (@blogbloketips) reply on November 20th, 2009 4:13 pm:

    96. I just wanted to say this post is brilliant. Very comprehensive. The .htaccess redirect works!

      [ Reply..]

      BLOGBloke on Nov 20th, 2009 at 8:27 pm replied...

      @Justin Gill .. thanks for saying so Justin. It always feels great to hear from another happy customer. :-)

      Cheers!

      ..BB

      [ Reply..]

      BLOGBloke (@blogbloketips) reply on November 20th, 2009 8:27 pm:

    97. Hi BLoke,
      Thank you for this - I’ve done weeks of research as well, and got REALLY complicated with the htaccess, so I’ll see how this goes.

      What did you end up doing for the image hosting?

      Thanks,
      Cathy

      [ Reply..]

      BLOGBloke on Dec 12th, 2009 at 5:14 pm replied...

      @Cdathy Tibbles, I host images on my wordpress.com account. Let me know it goes. I always like to hear from happy customers.

      [ Reply..]

      BLOGBloke (@blogbloketips) reply on December 12th, 2009 5:14 pm:

    98. Murphy’s law seems to apply to my automotive website. First of all, thank you for this post — it works like a charm. However, it doesn’t work optimally for automotive blogs. It seems that at least 45% of by redirects fail. Luckily, I have noticed a trend: None of my articles that have titles that start with numbers (i.e. years) work. Murphy`s law, however, appears to apply to all my other posts. It’s just unfortunate that a great deal of my posts have titles that start with numbers/years (for the model years of cars).

      Would you by any chance have a fix for this?

      [ Reply..]

      BLOGBloke on Jan 9th, 2010 at 5:35 am replied...

      @Kwame, you will have to play around with the Apache code ..

      [ Reply..]

      BLOGBloke (@blogbloketips) reply on January 9th, 2010 5:35 am:

    99. Thanks for that great tutorial. I have migrated my blogger to WP follows your instructions. I have a question here, my blogspot.com url has been redirected to my .com domain, I’ve selected “No” for not allowing search engine to crawl my blog after migrated it to WP, but does it mean the search engine won’t crawl my .com as well because it was directed from my blogspot.com?

      [ Reply..]

      BLOGBloke on Jan 8th, 2010 at 6:16 pm replied...

      @Mars .. no, it just prevents your old blogspot blog from being crawled to avoid penalty for duplicate content.

      Cheers,

      ..BB

      [ Reply..]

      BLOGBloke (@blogbloketips) reply on January 8th, 2010 6:16 pm:

    100. BlogBloke,

      I had been wondering how to easily change my permalinks from the old blogger method ( 2009/10/name-of-post.html ) to wordpresses clean http://www.whitewaterfreestyle.com/a-post-name . Being able to modify the htaccess file so that it redirects the old URL’s to the new ones was great! Just what I was looking for. Well done.

      Cheers,

      -Adam

      [ Reply..]

      BLOGBloke on Jan 31st, 2010 at 10:52 pm replied...

      @Adam Johnson .. it was my pleasure and glad it worked for you ..

      [ Reply..]

      BLOGBloke (@blogbloketips) reply on January 31st, 2010 10:52 pm:

    101. Dear BlogBloke

      I wanted to let you know that I thank you every day for helping me migrate my blog off of Blogger to Wordpress.

      It’s like magic now that all the URLs redirect and I even fixed the internal links like you suggested because I followed this blog post to the letter!

      You have changed my life for the better and for this I am eternally grateful!

      [ Reply..]

    102. Hey, excellent post. I just transfered to my custom domain but still on blogger. I’m planing to switch to wordpress using your suggestions and this tutorial, so i will inform you if i success.

      One more thing, i think that it’s better to import your blogger posts on local wordpress installation then on wordpress.com, so that’s way i will try it.

      Thanks again !

      [ Reply..]

    103. Hello,

      Thank you for this great redirect code. The only problems that I am having is that some of my redirects are going to the wrong pages. For example, if I have an entry with the slug “preparing-for-travel-to-egypt” it is being redirected to a page with the slug “preparing-for-travel-to-morocco.” The redirect seems to just be taking the first word of the slug and guessing from there.

      Has anybody else had this problem?

      Thanks,

      Wade

      [ Reply..]

      BLOGBloke on Mar 22nd, 2010 at 4:37 pm replied...

      @Wade, like I mentioned earlier in the article the odd link might get changed during the import process into Wordpress. In that case the redirect can’t find an exact match so it will make a best guess.

      [ Reply..]

      BLOGBloke (@blogbloketips) reply on March 22nd, 2010 4:37 pm:

    104. Thanks for the help, never would have thought to change the blogger setting ‘To STOP letting the search engines index your site’

      Best, Marcel

      [ Reply..]

    105. One of the best and easiest way for not loosing google juice.. Thanks a TON!!! you saved my day…

      [ Reply..]

      BLOGBloke on Apr 1st, 2010 at 5:17 pm replied...

      @zacked, and your comment made my day … cheers!

      [ Reply..]

      BLOGBloke (@blogbloketips) reply on April 1st, 2010 5:17 pm:

    106. Thanks for the great help. I did everything as mentioned by you. Just some confusion and not happening. Let me explain:
      I used jayantadeka.com to blog at blogger which is registered with godaddy. Now I use lifespurple.com to blog at wordpress. This domain is registered with mitsu.com.

      How do I park www.jayantadeka.com? Actually where do I get the park domain option. Godaddy? I wonder how can parking at godaddy will help as there won’t be any connection!
      Please help.

      You can mail me at (removed by admin for security reasons).

      [ Reply..]

      BLOGBloke on Apr 2nd, 2010 at 10:16 pm replied...

      @Jayanta Deka, you need to read #3 again .. park your old domain in your cPanel which is provided by your blog host provider .. glad to help!

      [ Reply..]

      Jayanta Deka on Apr 3rd, 2010 at 2:23 am replied...

      @BLOGBloke, There is no option to park domain! I only have Sub Domain, Redirects and Simple DNS Zone Editor.
      Will I be able to do now?
      I have updated my old URL’s NS too to my hosting provider - I need to do that?
      I can park my old domain from its control panel. I registered that at godaddy and they are having an option.

      Thanks a lot friend. I owe you a treat now. thanks a lot

      [ Reply..]

      BLOGBloke on Apr 3rd, 2010 at 2:28 am replied...

      @Jayanta Deka, there has to be .. please read the end of this post again:

      “UPDATE: There seems to be some confusion amongst readers understanding the difference between a Domain Host and a Blog Host.”

      I think you are confusing godaddy with your “blog host” company, unless godaddy is hosting your blog as well.

      You should be talking to whomever is hosting your blog for help in parking your domain.

      [ Reply..]

      Jayanta Deka on Apr 3rd, 2010 at 2:53 am replied...

      @BLOGBloke, Yes I know the difference. I sent a mail. Lets see if they help me in parking the domain.
      One quesn! Do I need to update the NS of my old domain? Step #1 is for new domain or old domain?

      [ Reply..]

      BLOGBloke on Apr 3rd, 2010 at 3:26 am replied...

      @Jayanta Deka, step #1 is for the new domain and parking is for the old one.

      Tell me .. who is your blog host provider?

      [ Reply..]

      Jayanta Deka on Apr 3rd, 2010 at 5:45 am replied...

      @BLOGBloke, Done..

      Thanks friend… Its great help from your end. Now all is working well.

      Thanks again…

      [ Reply..]

      Jayanta Deka (@blogbloketips) reply on April 3rd, 2010 5:45 am:

      BLOGBloke (@blogbloketips) reply on April 3rd, 2010 3:26 am:

      Jayanta Deka (@blogbloketips) reply on April 3rd, 2010 2:53 am:

      BLOGBloke (@blogbloketips) reply on April 3rd, 2010 2:28 am:

      Jayanta Deka (@blogbloketips) reply on April 3rd, 2010 2:23 am:

      BLOGBloke (@blogbloketips) reply on April 2nd, 2010 10:16 pm:

    107. I need some help. I transferred from blogger to wordpress last night and managed to get my posts imported over by changing the .xml file over to wordpress file.

      Now my question is, do I need to do the permalink redirection if my blog before transfer was the same address: mypetsavings.com? I didn’t transfer it from mypetsavings.blogspot.com, it was already a .com.

      So do I still need to do all of the stuff mentioned above?

      Thanks!!

      [ Reply..]

      BLOGBloke on Apr 30th, 2010 at 5:29 pm replied...

      @Kristy@MyPetSavings.com, I’m assuming you are referring to the apache code above in which case the answer is yes if you want to keep your Google juice flowing.

      [ Reply..]

      BLOGBloke (@blogbloketips) reply on April 30th, 2010 5:29 pm:

    108. This is an amazing tutorial! I’m relatively new to blogging, but trying to learn fast. I created thepaisleypeacock.net on blogger, & bought the custom domain from within blogger. Now I’d love to switch to Wordpress.org (so i can use fancier templates than Wordpress.com) and need to install, redirect, etc. I’m scared :)

      So far, I set up a free account on Wordpress.com, indigopeacock.wordpress.com, and internally i could purchase indigopeacock.com for about $15. But is it better to buy that separately (externally) on GoDaddy.com? Because I still will need to operate on Wordpress.org anyway, right? I just want to do it step by step how you did when you changed platforms AND domains. thanks!!! :)

      [ Reply..]

      BLOGBloke on May 10th, 2010 at 4:08 pm replied...

      @neha, yes I recommend GoDaddy so you can use this tutorial AND they’re cheaper too.

      [ Reply..]

      neha on May 10th, 2010 at 7:00 pm replied...

      thanks for writing back so fast, you’re awesome! so when I go to GoDaddy.com, I can simply register my domain since it’s not taken, correct? That’s 1 thing in my basket…but!

      Do I also have to purchase the Wordpress Hosting option that is on GoDaddy.com? (this page: http://www.godaddy.com/hosting/wordpress-hosting.aspx?ci=15005)

      And after that, should I install Wordpress.org on my machine, or use GoDaddy.com’s one-click installation tool for Wordpress? Which way have you done it? I love the idea of being able to blog from any computer. Plus the Wordpress install instructions are intimidating!

      Sorry i am SUCH a novice! I guess I am confused about actual “hosting” versus the Wordpress.org install, and what I should purchase/install, and in what order. thank you! :)

      [ Reply..]

      BLOGBloke on May 10th, 2010 at 10:29 pm replied...

      @neha .. no, I would not recommend GoDaddy for hosting your blog. It’s always a good idea to keep your domain registrar and web host separate. I use http://hexahost.com for this blog but there are lots of inexpensive hosts out there. Just make sure they will install wordpress and take care of the backend for you.

      [ Reply..]

      neha on May 12th, 2010 at 8:29 am replied...

      @BLOGBloke, great. I just emailed Hexahost to confirm that, but did they install Wordpress for you when you purchased your package?

      I will go ahead and register my domain with GoDaddy :)

      [ Reply..]

      BLOGBloke on May 12th, 2010 at 11:09 am replied...

      @neha, my situation is different and you need to make certain for yourself what you are getting. Before making a decision you should always shop around http://www.google.com/search?client=opera&rls=en&q=best+blog+hosts&sourceid=opera&ie=utf-8&oe=utf-8

      [ Reply..]

      neha on May 13th, 2010 at 5:03 am replied...

      @BLOGBloke, ok i have taken a look around for a web host… and found 3 options, hexahost which you told me about, justhost.com and laughingsquid.com. The squid one is a “cloud hosting” option… would you recommend that? thank you!

      [ Reply..]

      BLOGBloke on May 13th, 2010 at 1:03 pm replied...

      @neha, you can learn more about cloud hosting here http://www.webhostingsecretrevealed.com/web-hosting-knowledge/a-brief-on-cloud-hosting/ but it’s probably overkill and too expensive for your needs.

      You need to spend some time learning and doing your due diligence. Unfortunately I can’t do that for you.

      You need to look at all of the features and decide what is best for YOUR needs and budget. Once you’re narrowed that down the deciding factor should then be customer service and reputation.

      Google reviews from customers for honest opinions, decide on a budget and make a decision. You might want to go for the short term at first to give them a try before locking into a long term contract.

      It’s always a gamble but doing your homework will save you a lot of headaches down the road.

      [ Reply..]

      BLOGBloke (@blogbloketips) reply on May 13th, 2010 1:03 pm:

      neha (@blogbloketips) reply on May 13th, 2010 5:03 am:

      BLOGBloke (@blogbloketips) reply on May 12th, 2010 11:09 am:

      neha (@blogbloketips) reply on May 12th, 2010 8:29 am:

      BLOGBloke (@blogbloketips) reply on May 10th, 2010 10:29 pm:

      neha (@blogbloketips) reply on May 10th, 2010 7:00 pm:

      BLOGBloke (@blogbloketips) reply on May 10th, 2010 4:08 pm:

    109. Thanks for this

      information

      [ Reply..]

    110. Hey, I just switched from blogger to wordpress and my feedburner says the url not found 404. Any suggestions would be appreciated! thanks!

      [ Reply..]

      BLOGBloke on Jun 5th, 2010 at 3:13 pm replied...

      @Beth, did you switch your new wordpress feed url in feedburner?

      [ Reply..]

      BLOGBloke (@blogbloketips) reply on June 5th, 2010 3:13 pm:

    111. very good information you write it very clean. I’m very lucky to get this information from

      you.

      [ Reply..]

    112. HELP! Since my domain name is the same, and I have already switched over to WP, it now shows the generic “hello world” blog. When I go to import, it is pulling from the WP blog and NOT the blogger blog. I am freaking out! How do I get the posts from the blogger moved over… nothing is working. Since I have the same domain name, it no longer recognizes the blogger blog!

      [ Reply..]

      BLOGBloke on Jun 22nd, 2010 at 11:31 am replied...

      @Julie-Inspired to Write, hi there. Did you read this part?

      Note: If it doesn’t work, open up a wordpress.com account and import from there. Then export the file to your desktop and import it back again via your self-hosted Wordpress dashboard.

      [ Reply..]

      BLOGBloke (@blogbloketips) reply on June 22nd, 2010 11:31 am:

    113. Strike all of that! I just found some advice on another blog and changed what I added to .htaccess and it worked beautifully. Instead of this line at the beginning of the file (since I’m migrating my blog using the same domain), I added this line after RewriteEngine :

      RewriteRule [0-9]{4}/[0-9]{2}/(.*)\.html $1 [R=301,L]

      Seems to work flawlessly, so I hope I haven’t overlooked anything, and that it helps someone else who’s having a similar issue.

      [ Reply..]

      BLOGBloke on Jul 4th, 2010 at 4:28 pm replied...

      @Kristina, I’m happy to hear it’s working for you but I don’t recommend deviating from the instructions in this post. It works for me and thousands of others who are now using this method.

      [ Reply..]

      BLOGBloke (@blogbloketips) reply on July 4th, 2010 4:28 pm:

    114. I sure hope this doesn’t duplicate as my first message didn’t seem to go through. Thanks so much for responding to my tweet! My designer moved me from blogger to self-hosted WP. I will admit to not being technical myself, but when 100 or so posts (most recent ones) did not import we didn’t know what to do. I googled and tried to re-import but nothing. Since my sites reviews products many of comment and live events that are no longer accessible for nearly a week now so the panic is setting in! Thank you for any help you can offer!

      [ Reply..]

    115. As you can see by my blog’s name, I do not have my own domain name and I created a trial blog at wordpress.com but I’ve decided that I’ll switch to wordpress rather than wordpress.com. So now, I am buying a domain name but I didn’t have a domain when I was using blogger so do I still have to follow step 1 and step 3? Very informative article but I might be a bit confused while trying out step 4 and I don’t know much about html though I had edited a bit of it on blogger.

      Do I have to copy and paste exactly this: RedirectMatch permanent ^/[0-9]{4}/[0-9]{2}/([a-z0-9]+) yourblog.com/$1….? I mean of course I know, I gotta change the ‘yourblog.com’, I’ll do that but what do I write instead of $1? And will importing posts from blogger delete my posts on blogger? Thanks a lot for such a detailed article!

      [ Reply..]

      BLOGBloke on Aug 29th, 2010 at 2:17 am replied...

      @Sanya - jimmymycrushie.blogspot.com, this also might help http://www.blogbloke.com/custom-domain-blogger-dns-seo-godaddy/

      I’m afraid you’re just going to have to bite the bullet and dive in. You will figure it out.

      [ Reply..]

      BLOGBloke (@blogbloketips) reply on August 29th, 2010 2:17 am:

    116. To redirect from specific blogger posts to wordpress you can use javascript redirect http://www.techbrij.com/231/redirect-specific-posts-from-blogger-to-wordpress-or-other-sites

      [ Reply..]

    117. […] Original post by Blog Bloke dot com […]

    118. […] Migrating-Redirecting Blogger to Wordpress: The Complete Guide! […]

    119. […] ever plan on migrating a blog from Blogger to WordPress.org, I highly recommend Blog Bloke’s Migrating-Redirecting Blogger to Wordpress: The Complete Guide. Not only is the guide detailed and helpful, but Blog Bloke has been most generous about answering […]

    120. […] Blog Bloke Says: February 19th, 2008 at 11:37 pm I’ve discovered an easier way to move your Blogger blog over to Wordpress, automatically redirect your old posts and should not lose your pagerank either. […]

    121. […] into your .htaccess file before the line: ….. My old blogger site does not redirect at all. …http://www.blogbloke.com/migrating-redirecting-blogger-wordpress-htaccess-apache-best-method/htaccess rewrite tips using RewriteRule and RewriteCond for .htaccess …Sometimes your rewrites […]

    122. […] pretty much retained my blog rank (after the Google shakeup) like I had predicted thanks to htaccess redirects, although some individual post pages still need updating. That’s of course due to losing […]

    123. […] here is how I did it. Thanks to BlogBloke’s experience making the move himself to get me through […]

    124. […] of step 9 and much of step 10 are described in full and with screenshots at Blog Bloke’s complete guide for migrating and redirecting from Blogger to Wordpress. He also talks about the .htaccess file which is a subject that caused me the biggest obstacle of […]

    125. […] Now I think I have brought everyone with me - I hope! There is a redirect on the old blogspot site which should bring you straight here - but you may want to update your bookmarks anyway: Journey of 100 Sites is now at http://lissowerbutts.com All the posts and comments came across easily, the WP import feature really does work! The RSS was find too as I already was using feedburner so you RSS Readers won’t see anything different.  The redirecting the individual posts and of the high level domain is all thanks to Blogger Bloke’s excellent tutorial on how to move from blogger to WordPress […]

    126. […] a plugin for Wordpress (self-hosted) that allowed for an easier transition from Blogger; however, this guy has an interesting idea that he says could save your "Google Juice". __________________ Lag-O-Rama - Home Biz […]

    127. […] will happen automagically, I will be trying several tips that are hanging there on the cloud, one of them is this one, pretty handy, I must […]

    128. […] Enjoy! While I moved from blogger to wordpress I took help from this post of blogbloke.com. I found there were some points that could be improved upon hence wrote a […]

    129. […] the original: Migrating-Redirecting Blogger to Wordpress: The Complete Guide! | Blog Bloke Tips Tags: Comments0 Leave a Reply Click here to cancel […]

    130. […] (with year, month, and trailing .html) to the new version used by WordPress. For details, see BlogBloke.com’s article (currently under construction, see the google cached version). To test if your implementation works […]

    131. awesome site brotha http://bit.ly/1pXPfp

    132. awesome site brotha http://bit.ly/1pXPfp

    133. awesome site brotha http://bit.ly/1jshln

    134. awesome site brotha http://bit.ly/1jshln

    135. @Gaia Herbs, some look like downtown Las Vegas in the evening. http://bit.ly/2ub7iQ

    136. @Gaia Herbs, some look like downtown Las Vegas in the evening. http://bit.ly/2ub7iQ

    137. @Gaia Herbs, some look like downtown Las Vegas in the evening. http://bit.ly/2ub7iQ

    138. @CFI, @hospitalera … my head was spinning when I wrote it ;-) http://bit.ly/1CQix9

    139. RT @BLOGBloke: 10 Reasons Why I Don’t Like Your Blog http://bit.ly/2TRLSx

    140. 10 Reasons Why I Don’t Like Your Blog http://bit.ly/2TRLSx

    141. @Humayon, if you are just a blogspot user then you don't need to bother with dns settings. But I still recommend ge… http://bit.ly/1fDYre

    142. @hari saryono, I wrote an article about why we should not play into terrorists hands by linking to these horrific v… http://bit.ly/2aTKBw

    143. @InternetMarketingMentor, here's another analogy for you. Your blog is your permanent home and social networks are … http://bit.ly/4hZtE

    144. @InternetMarketingMentor, here's another analogy for you. Your blog is your permanent home and social networks are … http://bit.ly/4hZtE

    145. Optimize Your Blog - Making Your Blog Search Engine Friendly http://bit.ly/4A9Go5

    146. @Mike, glad you liked it. If you're serious about blogging then Wordpress is the way to go. http://bit.ly/33GQUp

    147. via @BLOGBloke: Hi There! Thanks for following. Why not ask me a question or for more blog tips visit http://tinyurl.com/5zjajb. Cheers!

    148. @Michelle, you do not need a subdomain for it to work. A subdomain is also a bad idea for SEO. You need to go over … http://bit.ly/5Z3vbE

    149. @Justin Gill .. thanks for saying so Justin. It always feels great to hear from another happy customer. :-)

      Cheers! http://bit.ly/5Z3vbE

    150. blog hating at http://www.blogbloke.com/10-reasons-why-i-dont-like-your-blog was just pinged to 91 Services!

    151. @Kay, I never thought of it that way http://bit.ly/1CQix9

    152. @humglum http://www.blogbloke.com/moving-wordpress-blogger/ basically… no. doesnt look like it'll happen.

    153. @BLOGBloke,

      I decided to get rid of the Blogger redirect as the redirect via modification to .htaccess works, t… http://bit.ly/5Z3vbE

    154. @Michelle, redirect speeds will depend on the blog host's servers and your internet connection. You only need to pa… http://bit.ly/5Z3vbE

    155. @drugi, you mean "you can please some of the people all of the time and all of the people some of the time, but you… http://bit.ly/4CvJh7

    156. Finding Your Blog Voice http://bit.ly/5LD5kQ

    157. @zarazek, don't get your domains through Wordpress. Use GoDaddy or something similar. http://bit.ly/1fDYre

    158. […] mistake and yes, I lost traffic and backlinks. Bummer. I discovered a great little code trick from BlogBroke and Sharp Wit helped me with and that forwarded traffic from my blogspot address over to my new […]

    159. Saw an advertisement for Moving Blogger to Wordpress Service. Why not save your money and read my free guide? http://bit.ly/6rFYFE They do

    160. hmm.. informative )) http://bit.ly/6krJX6

    161. I should notify my girlfriend about your post. http://bit.ly/6iqFfC

    162. hello everybody, how are you all doing.i am liking this web sight i might start staying on it more. me i stay sick … http://bit.ly/6krJX6

    163. @Cdathy Tibbles, I host images on my wordpress.com account. Let me know it goes. I always like to hear from happy c… http://bit.ly/5Z3vbE

    164. @BLOGBloke, Yeh, I had a domain from a different comapny but Wordpress said I still had pay them to be able to link… http://bit.ly/1fDYre

    165. @zarazek, so if I understand you correctly your blog was being hosted by Wordpress and then they insisted on chargi… http://bit.ly/1fDYre

    166. I'm very happy with the refinements I made to the blog. What do you think? http://www.blogbloke.com/

    167. How to Produce Your Own Podcast http://ff.im/-dm32o

    168. "10 Reasons Why Twitter Is So Popular" ( http://bit.ly/8CM5gX )

    169. Updated my Blokester Buttons for 2010. Grab yours now .. http://www.blogbloke.com/introducing-new-blokester-buttons/

    170. How to Make Professional Podcast Videos for Your Blog (Vlog) http://bit.ly/7EHvN8

    171. RT @projournalist: How to Make Professional Podcast Videos for Your Blog (Vlog) http://bit.ly/7EHvN8

    172. RT @journtoolbox RT @projournalist: How to Make Professional Podcast Videos for Your Blog (Vlog) http://bit.ly/7EHvN8

    173. @BLOGBloke - really ok - am trying to pull off this from your blog http://bit.ly/5Zv5kW (thank you so much for documenting this - it rocks)

    174. […] Migrating-Redirecting Blogger to Wordpress: The Complete Guide! www.blogbloke.com/migrating-redirecting-blogger-wordpress-htaccess-apache-best-method – view page – cached Welcome to Blog Bloke’s Better “Blog Tips” category for all levels of Bloggers. […]

    175. @BLOGBloke - do you think I could use this service to redirect or park my domain like you mentioned in http://bit.ly/5Zv5kW

    176. Great tutorial on migrating your blog from #blogger to #wordpress. http://bit.ly/Nlr2k

    177. @FijiLomalagi my email is at the bottom of my blog http://www.blogbloke.com/

    178. @Kwame, you will have to play around with the Apache code .. http://bit.ly/5Z3vbE

    179. @Ankit_A see if this helps.. http://bit.ly/Nlr2k

    180. […] FC was moved from Blogger to Wordpress. Though the transition was successfully made (thanks to some help from BLOGBloke), there is still plenty left to do. I hope to tweak, or completely change, the theme […]

    181. @drewmillikin My technical skills are limited, but I found this post to be very helpful: http://bit.ly/7LY764. My advice: pull the trigger.

    182. @Adam Johnson .. it was my pleasure and glad it worked for you .. http://bit.ly/5Z3vbE

    183. @gopmommy Your domain name redirection is done on your hosting service. Check this tutorial http://is.gd/8TXkI

    184. @stepfanieb Check #6. http://bit.ly/Nlr2k

    185. RT @BLOGBlokeTips How to Make Professional Podcast Videos for Your Blog (Vlog) http://bit.ly/2JgxLd

    186. @Wade, like I mentioned earlier in the article the odd link might get changed during the import process into Wordpr… http://bit.ly/5Z3vbE

    187. @John Daniels, not sure if I understand your question. Can you be more specific? http://bit.ly/cjF9ac

    188. Should you use a "TwitterRoll" to promote your blog? http://j.mp/cO1yKB

    189. RT @Twitter_Tips: Should you use a "TwitterRoll" to promote your blog? http://j.mp/cO1yKB

    190. Should you use a "#TwitterRoll" to promote your blog? http://j.mp/cO1yKB

    191. Twitter_Tips: Should you use a "TwitterRoll" to promote your blog? http://j.mp/cO1yKB: Twitter_Tips: Should .. http://bit.ly/9ApqEG
      RT

    192. 8 Twitter Tips to Promote Your Blog: We should be leveraging Twitter to drive traffic over to our blogs – not the … http://bit.ly/dxYF2d

    193. RT @Twitter_Tips: Should you use a "TwitterRoll" to promote your blog? http://j.mp/cO1yKB

    194. RT @Twitter_Tips: Should you use a "TwitterRoll" to promote your blog? http://j.mp/cO1yKB

    195. 8 Twitter Tips to Promote Your Blog - We should be leveraging Twitter to drive traffic over to our blogs – not the … http://ow.ly/16Uu8y

    196. Twitter_Tips: Should you use a "TwitterRoll" to promote your blog? http://j.mp/cO1yKB: Twitter_Tips: Should you us… http://bit.ly/95gYJT

    197. RT @Twitter_Tips: Should you use a "TwitterRoll" to promote your blog? http://j.mp/cO1yKB

    198. Should you use a "TwitterRoll" to promote your blog? http://j.mp/cO1yKB http://url4.eu/21u9n

    199. RT @Twitter_Tips: Should you use a "TwitterRoll" to promote your blog? http://j.mp/cO1yKB

    200. 8 Twitter Tips to Promote Your Blog http://bit.ly/bLbgz2

    201. RT @mparent77772: 8 Twitter Tips to Promote Your Blog http://bit.ly/bLbgz2

    202. 8 Twitter Tips to Promote Your Blog http://bit.ly/bLbgz2 (via @mparent77772)

    203. RT @mparent77772: 8 Twitter Tips to Promote Your Blog http://bit.ly/bLbgz2: RT @mparent77772: 8 Twitter Tips to Pr… http://bit.ly/dortmq

    204. RT @mparent77772
      8 Twitter Tips to Promote Your Blog http://bit.ly/bLbgz2: RT @mparent77772
      8 Twitter Tips to Pr… http://bit.ly/diYc9B

    205. @Dorinda, I'm on pay & talk with auto top-up and on the phone with Telus (Philippines) as I write this. My daughter… http://bit.ly/1BH6lz

    206. @BLOGBloke, Hi,
      I wrote some time earlier that the system is working. But its not now! And I have changed nothing!… http://bit.ly/5Z3vbE

    207. @Kathy Dickens, yes that's right. I remember him well. http://bit.ly/bVqh7d

    208. @BLOGBlokeTips Thanks also, sir. What am I thanking you for, by the way? Having a badass blog at http://bit.ly/d4jZWu ? I'm down for that.

    209. RT @BLOGBlokeTips Migrating-Moving Blogger to Wordpress: The Good, Bad and the Ugly http://bit.ly/1wYXCq

    210. RT @akhilsethi: RT @BLOGBlokeTips Migrating-Moving Blogger to Wordpress: The Good, Bad and the Ugly http://bit.ly/1wYXCq

    211. 10 Reasons Why Twitter Is So Popular > http://bit.ly/c3QPQZ

    212. Should Your Business be Blogging? http://bit.ly/7Zvgck

    213. Better TIPS by Blog Bloke (BLOGBloke) http://www.blogbloke.com/ Blogging.alltop

    214. @5andra > Moving-Migrating from Wordpress to Blogger: The Good, Bad, the Ugly, and How I Did It http://bit.ly/ayW6Af

    215. Snarky .. 15 Secret Tips for Building A Better Blog http://bit.ly/4ldWbD

    216. @clickryan @5andra .. here you go: Migrating-Redirecting Blogger to Wordpress: The Complete Guide! http://bit.ly/JDz43

    217. The Top 10 Commenting Sins of All Time! http://bit.ly/ddJnzC

    218. RT @BLOGBlokeTips: The Top 10 Commenting Sins of All Time! http://bit.ly/ddJnzC

    219. @Kristy@MyPetSavings.com, I'm assuming you are referring to the apache code above in which case yes, if you want yo… http://bit.ly/5Z3vbE

    220. Calling all Blokesters: I changed the blog background .. please let me know what you think http://www.blogbloke.com/

    221. @BLOGBlokeTips Looks clean, sir. I need a comparison, though~ http://bit.ly/d4jZWu

    222. 10 motivos por los que twitter es tan popular…..
      Estais de acuerdo? http://www.blogbloke.com/twitter-popular/

    223. Beware of Geeks Bearing Online Gifts http://bit.ly/5iaUha

    224. @neha, yes I recommend GoDaddy so you can use this tutorial AND they're cheaper too. http://bit.ly/5Z3vbE

    225. @neha .. no, I would not recommend GoDaddy for hosting your blog. I would look elsewhere. I use http://hexahost.com… http://bit.ly/5Z3vbE

    226. @BLOGBloke, great. I just emailed Hexahost to confirm that, but did they install Wordpress for you when you purchas… http://bit.ly/5Z3vbE

    227. @BLOGBloke, ok i have taken a look around for a web host… and found 3 options, hexahost which you told me about, … http://bit.ly/5Z3vbE

    228. 10 Reasons Why Twitter Is So Popular
      http://www.blogbloke.com/twitter-popular/

    229. Thanks for this

      information http://bit.ly/5Z3vbE

    230. @Beth, did you switch your new wordpress feed url in feedburner? http://bit.ly/5Z3vbE

    231. Just added Apture to my blog. I have to admit it's pretty cool .. a scroll-down header with social media functions http://www.blogbloke.com/

    232. Have you tried Apture yet? Check it out on my blog http://www.blogbloke.com/ Scroll down and watch the top .. cool http://www.apture.com/

    233. @BlogBlokeTips My 1st comment in yr blog was back in '08 http://www.blogbloke.com/what-is-nofollow-and-why-your-blog-should-get-rid-of-it/

    234. […] Blogger to Wordpress: The Complete Guide! Jun 18, 2010 5:08pm by BLOGBloke Amped URL:  www.blogbloke.com Register to comment: Tags:  blog tips, blogger, custom, […]

    235. […] Migrating-Redirecting Blogger to Wordpress: The Complete Guide! blogbloke.com/migrating-redirecting-blogger-wordpress-htaccess-apache-best-method/ – view page – cached Welcome to Blog Bloke’s Better “Blog Tips” category for all levels of Bloggers. Tweets about this link Filter tweets […]

    236. Migrating-Moving from Blogger to Wordpress: The Good, Bad and the Ugly http://bit.ly/1wYXCq

    237. Migrating-Redirecting Blogger to Wordpress: The Complete Guide! http://bit.ly/1tGuFi

    238. Reading: "Migrating-Redirecting Blogger to Wordpress: The Complete Guide!"( http://twitthis.com/8jqauj )

    239. BLOGBloke just got a facelift. I decided to brighten things up a bit (yes I like blue). Let me know what you think http://www.blogbloke.com

    240. @Julie-Inspired to Write, hi there. Did you read this part?

      Note: If it doesn’t work, open up a wordpress.com … http://bit.ly/5Z3vbE

    241. 10 Reasons Why Twitter Is So Popular http://ff.im/-mBS4r

    242. […] Bloke gives a Complete Guide on how to move over to […]

    243. @Kristina, I'm happy to hear it's working for you but I don't recommend deviating from the instructions in this pos… http://bit.ly/5Z3vbE

    244. @p_money Check out: http://bit.ly/Nlr2k to redirect. As for the new blog there are a few things you can do easily to help with google.

    245. I Love my Pipe http://bit.ly/4mR7zo

    246. What is a Pro Blogger? Setting the Record Straight http://bit.ly/81mzqi

    247. Using the LinkWithin plugin is helping me rediscover posts I've forgotten. I wrote a lot of good stuff if I may say so http://bit.ly/9sIzm5

    248. What does Original Content and Plagiarism mean for Bloggers? http://bit.ly/3Yzmsr

    249. "Better TIPS by Blog Bloke (BLOGBloke)" - http://bit.ly/bgSL6G via @BLOGBlokeTips

    250. 8 Twitter Tips to Promote Your Blog http://bit.ly/c5MwAh

    251. The Importance of Linking: http://bit.ly/2AjVpp Link Long and Prosper!

    252. Mohammad Elsheimy, no big deal. Just go into Google Webmaster Tools and choose your “Preferred Domain”. With or… http://bit.ly/bbzsUk

    253. The Importance of Linking: Link Long and Prosper! http://www.blogbloke.com/on-importance-of-linking/

    254. @BLOGBloke, Yeah, I found it. Google Webmaster -> Site Configuration -> Settings -> Preferred Domain.

      T… http://bit.ly/bbzsUk

    255. How to Make Professional Podcast Videos for Your Blog (Vlog) http://bit.ly/c4Xz6k

    256. Make Money Blogging with Google Adsense http://bit.ly/dgzVTr

    257. @Jennifer, from what I've seen Matt Cutts of Google has done a little backtracking and sidestepping on the issue an… http://bit.ly/ciskW3

    258. RT @BLOGBlokeTips 8 Twitter Tips to Promote Your Blog http://bit.ly/cT7wyV

    259. RT @Twit_Expert @Punflaykids 8 Twitter Tips to Promote Your Blog http://bit.ly/cT7wyV:

    260. RT @Twit_Expert @Punflaykids 8 Twitter Tips to Promote Your Blog http://bit.ly/cT7wyV:: RT @Twit_Expert @Punflayki… http://bit.ly/aXs09N

    261. Keeping Social Media Real with Blog Bloke http://bit.ly/bJtpS6

    262. […] of making the switch? I highly recommend it. Blogbloke and MamaBlogga have great tutorials to help! // Uncategorized    $50 Gap gift […]

    263. @jimmymycrushie, if you want a professional blog then Wordpress is the way to go. A personal blog is just fine on B… http://bit.ly/1fDYre

    264. […] zum Schluss kann dann noch der RSS-Feed umgeleitet […]

    265. @G.Taylor, just don't forget to give credit to the guy who started it all http://bit.ly/1BH6lz

    266. @Sanya - jimmymycrushie.blogspot.com, this also might help http://www.blogbloke.com/custom-domain-blogger-dns-seo-g… http://bit.ly/5Z3vbE

    BLOGBloke AvatarAdd A Comment .. your avatar (like mine on the right) will magically appear from your social profiles like Twitter or Gravatar. You can also add your comment to your Twitter or Facebook page by clicking on the cool buttons  Share

    Tweet This? Click Here 

    Subscribe to Better Blog Tips and the New Media Newsfeed Subscribe to comments for this post by RSS | TrackBack URL

    You can use these XHTML tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <code> <em> <i> <strike> <strong>

    Subscribe to Better Blog Tips and the New Media Newsfeed Thanks for dropping by and don't forget to Subscribe to the Better TIPS Newsfeed