I've been doing some research on creating a 301 redirect so if someone types in my website url as rvtwintrak.com, it will be redirected to www.rvtwintrak.com.
What I have found is that I need to add:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^rvtwintrak\.com
RewriteRule ^(.*)$ http://www.rvtwintrak.com/$1 [R=permanent,L]
Can someone please verify that this is correct, and more importantly, where do I put it???
Thanks in advance
What I have found is that I need to add:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^rvtwintrak\.com
RewriteRule ^(.*)$ http://www.rvtwintrak.com/$1 [R=permanent,L]
Can someone please verify that this is correct, and more importantly, where do I put it???
Thanks in advance
Comment