<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
><channel><title>Review Of Web &#187; blogger to wordpress</title> <atom:link href="http://reviewofweb.com/tag/blogger-to-wordpress/feed/" rel="self" type="application/rss+xml" /><link>http://reviewofweb.com</link> <description>Make the most of technology</description> <lastBuildDate>Sat, 12 May 2012 16:13:48 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>Moving from blogger to wordpress. How I did it and some pitfalls to avoid.</title><link>http://reviewofweb.com/blogging/tutorial-moving-from-blogger-to-wordpress/</link> <comments>http://reviewofweb.com/blogging/tutorial-moving-from-blogger-to-wordpress/#comments</comments> <pubDate>Sun, 21 Dec 2008 20:40:55 +0000</pubDate> <dc:creator>Ankur Jain</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[blogger]]></category> <category><![CDATA[blogger to wordpress]]></category> <category><![CDATA[blogspot]]></category> <category><![CDATA[custom domain]]></category> <category><![CDATA[wordpress]]></category><guid
isPermaLink="false">http://reviewofweb.com/blogging/tutorial-moving-from-blogger-to-wordpress/</guid> <description><![CDATA[how to move from blogger to wordpress, SEO friendly way, custom domain<p><a
href="http://reviewofweb.com/blogging/tutorial-moving-from-blogger-to-wordpress/">Moving from blogger to wordpress. How I did it and some pitfalls to avoid.</a> is a post from <a
href="http://ReviewOfWeb.com/">ReviewOfWeb</a></p> ]]></description> <content:encoded><![CDATA[<p></p><p>After a lot of dilly-dallying, finally I made up my mind to move from blogger to wordpress. With the introduction of “Import” feature in wordpress, the process has become quite simple but there are some points to take care of. Here is a step by step process how I made a shift, hope it would be useful for you too. In my case I had to move from blogger custom domain to wordpress. ie from xyz.com on blogger to xyz.com on wordpress. [This tutorial will be useful even for those who are moving from blogspot domain to your own domain on wordpress]</p><p><em>[We assume that you have wordpress installed on the domain you want to move to]</em></p><h4>Change your Name Servers to point to the new webhost.</h4><p>Go to your DNS settings page and point name server to your new host. <br
/><img
title="image" style="display: inline" height="95" alt="image" src="http://reviewofweb.com/wp-content/uploads/2008/12/image18.png" width="361" border="0" />&#160; <br
/>While registering, your webhost should have provided you with the name server info. If you are moving from custom domain name to wordpress <em><strong>with the same domain name</strong></em>, give ~ 24hrs of time for name server settings to propagate.&#160;&#160;&#160;</p><h4>Switch to blogspot.com</h4><p>If you are moving from blogger custom domain (and same domain) to wordpress, read on. Otherwise skip this step. <br
/>You need to switch to blogspot.com otherwise you would not be able to complete next step. <br
/><img
title="image" style="display: inline" height="94" alt="image" src="http://reviewofweb.com/wp-content/uploads/2008/12/image19.png" width="398" border="0" /></p><h4>Import all your blogger posts and comments with a click of a button.</h4><p>Go to wordpress dashboard &gt; Manage &gt; Import. Click on blogger. <br
/><img
title="image" style="display: inline" height="95" alt="image" src="http://reviewofweb.com/wp-content/uploads/2008/12/image20.png" width="157" border="0" /></p><p>On the next page you need to key-in your blogger account details to let wordpress access your blogs. Click on Import button. Your blog posts and comments will now get imported to wordpress.</p><h4>Redirection through .htaccess file.</h4><p>This is one of the most important part. Proper redirection ensures that you don’t lose the old traffic and Google juice. We assume that permalinks custom structure that you would be using is <strong>/%postname%/ </strong>[btw this is one of the most SEO friendly structures] Create a .htaccess file on the new domain.&#160; <br
/><strong></strong></p><ol><li><strong>If you are NOT in the habit of fiddling blogger post slug after publishing:</strong> The world would be nicer to you. <br
/>Here is what you can do to ensure proper redirection. <br
/><strong>RedirectMatch permanent ^/[0-9]{4}/[0-9]{2}/([a-z0-9A-Z_-]+) </strong><a
href="http://xyz.com/$1"><strong>http://xyz.com/$1</strong></a>&#160; <br
/>$1 in the end takes anything that comes out of ([a-z0-9A-Z_-]+) and append to your new blog URL.</li><li><strong>If you are in the habit of fiddling post slug after publishing (like me):</strong> Get ready to do some techie stuff. <br
/>If you tend to change the post slug in blogger after publishing, the above method would simply not work for you, as it didn’t work for me. Here is what I did that ensured 100% redirection. I used one to one mapping for the URL’s. I have tried to automate this process so that it would consume minimal time of yours.<p><a
href="http://notepad-plus.sourceforge.net/uk/download.php">Download and install Notepad++</a> <br
/>Go to blogger dashboard. Posting &gt; Edit Posts. View Source. <br
/>Select All and copy paste everything in notepad++ window.&#160; <br
/>Find <a
href="http://xyz\.blogspot\.com.*&quot;"><strong>http://xyz\.blogspot\.com.*&quot;</strong></a> and click find all. You will see the results in a window below. Copy paste from this window into a new one. <br
/>Find <strong>(.*)</strong><a
href="http://xyz\.blogspot\.com.*&quot;)"><strong>(http://xyz\.blogspot\.com.*&quot;)</strong></a><strong>(.*)</strong> replace with <strong>\2</strong> <br
/>Find <strong>&quot;</strong> and replace with blank [ie leave the replace field blank] <br
/>Find <strong>.*#comments</strong> and replace with blank [ie leave the replace field blank] <br
/>Find <a
href="http://xyz\.blogspot\.com"><strong>http://xyz\.blogspot\.com</strong></a>&#160; and replace with <strong>RedirectMatch permanent ^</strong> <br
/>Now Log into phpmyadmin of your new domain. Go to SQL tab and execute this query.</li></ol><ul><blockquote><p><font
color="#008000" size="2"><strong>SELECT post_name <br
/>FROM wp_posts <br
/>WHERE post_status = &quot;publish&quot; <br
/>AND post_type = &quot;post&quot;</strong></font></p></blockquote></ul><p>&#160; <br
/>You will get all your posts slug. Copy paste them in notepad++ window and: <br
/>Find <strong>(.*) </strong>and replace with to <a
href="http://www.xyz.com\1"><strong>http://www.xyz.com\1</strong></a></p><p
style="margin-right: 0px">Hereafter you need to manually place the URL in-front of the corresponding matching URL. I know this is kind of a boring stuff but this is closest to which I could reach and have tried to automate the process as much as I was able to.</p><p>Rest of the part should be no brainer.</p><h4>Change the “Let Search Engines find your blog” under blogger settings to No.</h4><h4>Change the original feed address in feedburner to your new blog’s feed address.</h4><p>Done. Enjoy! <br
/>While I moved from blogger to wordpress I took help from <a
href="http://www.blogbloke.com/migrating-redirecting-blogger-wordpress-htaccess-apache-best-method/">this</a> post of blogbloke.com. I found there were some points that could be improved upon hence wrote a full post on it.</p><p><a
href="http://reviewofweb.com/blogging/tutorial-moving-from-blogger-to-wordpress/">Moving from blogger to wordpress. How I did it and some pitfalls to avoid.</a> is a post from <a
href="http://ReviewOfWeb.com/">ReviewOfWeb</a></p> ]]></content:encoded> <wfw:commentRss>http://reviewofweb.com/blogging/tutorial-moving-from-blogger-to-wordpress/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 4/6 queries in 0.042 seconds using disk: basic
Object Caching 746/746 objects using disk: basic

Served from: reviewofweb.com @ 2012-05-22 01:51:54 -->
