I am trying to use a 301 redirect to direct users and bots to my new site but when I put the .htaccess live i keep getting a 500 internal error shown.
The site is actually a subdomain which i want to redirect to another subdomain on another site. I'm not sure if that's relevant but I thought I should include this information.
The web server I'm using is Apache and this is the htaccess code I'm using:
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.blog.mysite.co.uk/$1 [R=301,L]
Any idea what might be wrong with this?

