Force www in forum url - ipb

Discussion in 'Programming' started by MilesB, Aug 30, 2006.

  1. #1
    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?
     
    MilesB, Aug 30, 2006 IP
  2. wmtips

    wmtips Well-Known Member

    Messages:
    601
    Likes Received:
    70
    Best Answers:
    1
    Trophy Points:
    150
    #2
    Try this:

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