.htacces file for 301 redirect and prevent bad bots
I've read that to help SEO it is a good idea to redirect all possible domain names to one domain. Also, I wanted to prevent bad bots from chewing up bandwidth. Is the following correct for these purposes?
RewriteEngine on
RewriteCond %{HTTP_HOST} ^mydomain.com [NC]
RewriteRule ^(.*)$ http://www.mydomain.com/$1 [R=301,L]
Bookmarks