I managed to find a code for .htaccess that will make http://site.com be ww.site.com but it doesnt work if the site has many subfolders after it. For my site http://www.animeomnitude.com the whole script is messing up and wont let users download simply because when users login it it logs them in on http://animeomnitude.com but not http://www.animeomnitude.com which I need it to log them into. Can someone make me a rewrite code so www. will be forced into everything apart from subdomains?
Try this: RewriteCond %{HTTP_HOST} ^animeomnitude\.com RewriteRule (.*) http://www.animeomnitude.com/$1 [R=301,L]