Site News: Migrated to Wordpress, new RSS feed URL
This blog now runs on Wordpress. Unfortunately, the associated RSS feed URL has had to change. For the moment I’ve hacked a redirect into the Apache .htaccess to automatically redirect clients from the old RSS feed URL.
Does anyone out there know if it’s possible to get Wordpress to generate a feed for the Blosxom style "/index.rss" (in addition to the Wordpress style "/?feed=rss2" URL)?
Now that I’ve migrated all the content (kudos to Marc Nozell for the Blosxom->MT export scripts by the way), I can start looking at the rest that Wordpress has to offer.
5 Comments to Site News: Migrated to Wordpress, new RSS feed URL
Leave a comment
What I'm Doing...
- Weird, Jeff Stelling (brilliant Sky Sports 'Gillette Soccer Saturday' anchor) is to be the new Countdown host. He might be good... 40 mins ago
- Merging Irish banks until only BOI & AIB exist is terrible idea. Their assets are too expensive to be 'saved' if required(>100% of I ... 5 hrs ago
- I've got a ticket for the Pumas game tomorrow...can't wait! 7 hrs ago
- @donncha OO now has a native OS X build of v3. Latest neooffice is still cut from OO v2 source still I think so it's probably a bit behind. 8 hrs ago
- @EvertB Wondering if anyone 'in the know' could comment on status of irish mobile operator network capacity? 15 hrs ago
- More updates...
Posting tweet...
Blogroll
LinkRoll
Category Cloud
amazon api app apple atom atompub australia banks beacon berlin blogging blosxom capeclear content copyright data dev drm dublin eclipse economy facebook firefox food football fowa future games google hardware identity internet ireland irish java junk linux mac media microsoft mobile movies music n800 net nooked oauth openid opensocial opml osgi oss patents politics polls process rails railsconf rest rss ruby search soa social software spam sport tech travel trip tv uk us vodafone wayoutthere web2.0 web services why xml yahoo youtube
Recent Posts
Recent Comments
- d harris on How many James Bond films are there?
- rud0y on How many James Bond films are there?
- Fergus Burns on Moving On
Archives
Photos
|


john — new pages look good! dunno how to do this thing you asked, by wouldn’t a rewite rule for the url in apache achieve similar thing? or I guess you could write a hack to gen index.rss document for you whenever something is posted.
You could hack the WordPress source yourself to do it but it’s probably not worth it. mod_rewrite is the simplest way to resolve this.
I use feedburner to handle my feed publishing. This means that even if you do change the URL to your feed, it does not affect your readers. There is a feedburner plugin for WordPress that makes this very easy.
Howya Johnny,
Well I’ve put it a load of Redirect directives into the .htaccess for my categories (as Wordpress used a query with a numeric ‘cat’ attribute instead) and it all seems to be running smoothly. As for the old Blosxom date URLs (e.g. /2005/10/01…) they are still broken but that seem like waaay too much hassle to fix easily.
As for the Apache config, I think
Redirect oldURL newURL
is functionally equivalent to
RewriteRule oldURL/.*(.*) newURL [R]
so I’ll stick with the former.
Must look at the Feedburner plugin, though I think I need to sharpen my PHP a bit too!
No PHP knowledge necessary, you simply get the plugin, unzip it, copy to the wp-content/plugins directory, activate it through the admin console, and then redirect the feed from the Options -> Feedburner page. You will need to make your .htaccess file world writable when doing this.
As for the date URL’s, you can get your current posts to follow the same pattern, if you go the Options -> Permalinks page. Set the structure to ‘/%year%/%monthnum%/%day%/%postname%/’ (again .htaccess needs to be writable when doing this) and that’s it. Hopefully, your new postname matches the old, and the rewrite should be simple.
mod_rewrite is as easy as anything else to be honest.
Enjoy WP — it’s really quite good!