<?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>Dusty Reagan &#187; Blogger</title>
	<atom:link href="http://dustyreagan.com/tag/blogger/feed/" rel="self" type="application/rss+xml" />
	<link>http://dustyreagan.com</link>
	<description>On Technology &#38; Entrepreneurship</description>
	<lastBuildDate>Thu, 15 Jul 2010 01:17:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Convert from Blogger to WordPress</title>
		<link>http://dustyreagan.com/convert-from-blogger-to-wordpress/</link>
		<comments>http://dustyreagan.com/convert-from-blogger-to-wordpress/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 08:59:43 +0000</pubDate>
		<dc:creator>Dusty Reagan</dc:creator>
				<category><![CDATA[Web & Software Development]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/convert-from-blogger-to-wordpress/</guid>
		<description><![CDATA[I recently converted this blog from Blogger (published via FTP) to WordPress. It actually turned out to be a whole lot easier than I anticipated. I&#8217;ll lay out the steps I took for you below. Also, I should note, it &#8230; <a href="http://dustyreagan.com/convert-from-blogger-to-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I recently converted this blog from <a href="http://www.blogger.com/">Blogger</a> (published via FTP) to <a href="http://wordpress.org/">WordPress</a>. It actually turned out to be a whole lot easier than I anticipated. I&#8217;ll lay out the steps I took for you below.</p>
<p>Also, I should note, it was very important to me that all of my old Blogger links do a proper <a href="http://www.webconfs.com/how-to-redirect-a-webpage.php">301 permanent redirect</a> to their new home on my WordPress blog. I cover this below. However, I do not cover how to convert your Blogger template to a WordPress template. I took the transition as an opportunity to create a new look for my blog. So I skipped that process.</p>
<p><strong>Step 1 </strong></p>
<p>First! I installed WordPress on my <a href="https://www.nearlyfreespeech.net/">NearlyFreeSpeech.NET</a> hosting account. (Fact: NearlyFreeSpeech.NET is the best web host on the planet.)</p>
<p><strong>Step 2</strong></p>
<p>In Blogger (under Settings -&gt; Publishing) I switched from &#8220;publish via FTP&#8221; to &#8220;publish on blogspot.com.&#8221;</p>
<p><strong>Step 3</strong></p>
<p>Then I used WordPress&#8217;s awesome Blogger Import feature! (Found under Manage -&gt; Import) You&#8217;ll notice that you can not import blogger posts hosted via FTP. This is why I temporarily switched to blogspot.com.</p>
<p><strong>Step 4 </strong></p>
<p>After the successful Import, I installed the &#8220;<a href="http://justinsomnia.org/2006/10/maintain-permalinks-moving-from-blogger-to-wordpress/">Maintain Blogger Permalinks</a>&#8221; plugin. This plugin makes your new WordPress permalinks match your old Blogger permalinks. You only need to run this plugin once, then you can uninstall it.</p>
<p><strong>Step 5</strong></p>
<p>Now that my imported posts had their old permalinks, I took it a step further. I no longer wanted the archive folders (ie: /2006/03/) in my permalinks. Nor did I want my permalinks to end with the HTML file extension (ie: .html). So I added the following to the top of my <a href="http://en.wikipedia.org/wiki/Htaccess">.htaccess</a> file.</p>
<pre>&lt;IfModule mod_rewrite.c&gt;
   RewriteEngine On
   RewriteBase /
   RewriteRule ^([0-9]{4})/([0-9]{1,2})/([^/]+)\.html$ $3/ [QSA,R=301,L]
&lt;/IfModule&gt;</pre>
<p><strong>Step 6</strong></p>
<p>To preserve links to your old Blogger archives add the following to the top of your .htaccess file.</p>
<pre>&lt;IfModule mod_rewrite.c&gt;
RewriteEngine On
RewriteBase /
RewriteRule ^archives/([0-9]{4})_([0-9]{1,2})_([0-9]{1,2})_archive.html$ $1/$2/ [QSA,R=301,L]
&lt;/IfModule&gt;</pre>
<p><strong>Optional Step 7 </strong></p>
<p>During your Blogger import into WordPress, all of your Blogger &#8220;labels&#8221; are converted into WordPress &#8220;categories.&#8221; So if you want to maintain any old links to your old labels, add the following to the top of your .htaccess file.</p>
<pre>&lt;IfModule mod_rewrite.c&gt;
   RewriteEngine On
   RewriteBase /
   RewriteRule ^(labels)/([^/]+)\.html$ category/$2/ [QSA,R=301,L]
&lt;/IfModule&gt;</pre>
<p>I say this is optional because after I got my posts into WordPress, I immediately started changing all my categories and tags. So the precaution I took above turned out to be not very helpful. Oh well.</p>
<p><strong>The End!</strong></p>
<p>That about sums it up. It was a pretty easy transition. Of course I&#8217;ve spent hours setting up and tweaking my new template, and I&#8217;ve spent countless more hours playing with all the cool <a href="http://wordpress.org/extend/plugins/">community created plugins</a>. I just can&#8217;t help myself.</p>
<p>Drop me a comment if this was helpful to you! <img src='http://dustyreagan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://dustyreagan.com/?ak_action=api_record_view&id=47&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/convert-from-blogger-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
