getting 500 intenal error when setting 301 redirect using .htaccess
- by sam
im 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 (im not sure if thats relivant but i thought i should include it)
the site is hosted on a apache server
The 301 htaccess code im using is :
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.blog.mysite.co.uk/$1 [R=301,L]
any idea what might be wrong with this ?