301 to sub domain

Hi

I am looking for help with the following 301 redirect


www.domain1.com/tools

should redirect to sub domain…


http://tools.domain1.com

Any help would be great


Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\\.domain1\\.com$ [NC]
RewriteRule ^tools$ http://tools.domain1.com/ [L,R=301]

(untested)

Thanks

That worked