Car Insurance - Mortgage Calculator - Credit Card - Credit Cards - Mobile Phones

PDA

View Full Version : Force www in forum url - ipb


MilesB
Aug 30th 2006, 4:45 pm
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?

wmtips
Aug 31st 2006, 7:32 am
Try this:

RewriteCond %{HTTP_HOST} ^animeomnitude\.com
RewriteRule (.*) http://www.animeomnitude.com/$1 [R=301,L]