I'm trying to redirect any requests for mydomain.com or http://www.mydomain.com to football.mydomain.com with .htaccess. Thought I had it working, but it turns out it's redirecting *.mydomain.com. Not sure what I need to do. Here's what I've got now:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^hawkeye411.com [NC]
RewriteRule ^(.*)$ http://football.hawkeye411.com/$1 [L,R=301]