Blog Moving Stupidity
In one of my biggest online gaffs to-date, when I moved this blog from http://craddy.swdl.org to http://swdl.org I forgot about redirecting RSS feeds. That’s hopefully now been fixed - so if you’re reading this as a first post for a very very long time then that’s why!
If anyone’s interested this is how you can redirect a whole domain / sub-domain:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.swdl.org [NC]
RewriteRule ^(.*)$ http://www.swdl.org/$1 [R=301,L]
Obviosly change swdl.org to the domain you want to re-direct to and place the above in a .htaccess file in the source domain / sub-domain.