However, a few problems remain.
- Imported posts came with Textile rather than proper HTML.
- URLs have all changed.
- I should probably start writing actual content now.
- Comments weren't migrated, not that I had many. So No big loss.
mod_rewrite on my old server takes care of some URL problems. The main page does an external redirect here, and the old feeds redirect to Feedburner.
Just had to mix a little magic in with the rules I already had:
# Really old B2Evolution blog I used for like 2 daysmod_rewrite really makes my head hurt. I always have to refigure out it's magic. The last problem is all my old URLs won't redirect unless I figure out some real magic since Blogger likes ulrs as 2007/02/article-name and Textpattern did 2007/02/19/article-name. I could do some more rewrite magic, but that stuff just hurts. For now I will just keep the old stuff running for those 3 hits a year it gets.
RewriteRule ^xmlsrv/rss2.php$ http://feeds.feedburner.com/plek [R=permanent,L]
# Old style Textpattern feeds
RewriteCond %{QUERY_STRING} ^(rss|atom)=1
RewriteRule ^(.*) http://feeds.feedburner.com/plek [R=permanent,L]
# New style Textpattern feeds
RedirectPermanent /rss http://feeds.feedburner.com/plek
RedirectPermanent /atom http://feeds.feedburner.com/plek
# Redirect any main page access to the new site
RewriteRule ^$ http://blog.plek.org/ [R,L]
# Keep old Textpattern direct links working
RewriteRule ^(.*) index.php
Technorati Tags: blogging