I need URL redirect to www - Anybody HELP me?

Discussion in 'PHP' started by doubler, Mar 21, 2008.

  1. #1
    i am trying to redirect my without www URL with www URL i mean to say

    when anybody open http://mysite.com then URL automatically redirect to http://www.mysite.com

    so for this i have to some editing in .htaccess file and i did this way

    and after doing this editing when i open site i get msg that "The Site isn't redirecting properly" so anybody who could tell me what's the problem with...Thanks!
     
    doubler, Mar 21, 2008 IP
  2. DarkMindZ

    DarkMindZ Guest

    Messages:
    175
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Here you go

    RewriteEngine On

    ## Defines base
    RewriteBase /

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

    btw, would you be interested in link exchange with my site, darkmindz.com?
     
    DarkMindZ, Mar 21, 2008 IP
  3. doubler

    doubler Active Member

    Messages:
    952
    Likes Received:
    47
    Best Answers:
    0
    Trophy Points:
    70
    #3
    Thanks for this, i put this code in .htaccess file but it isn't still working :confused:
     
    doubler, Mar 21, 2008 IP
  4. DarkMindZ

    DarkMindZ Guest

    Messages:
    175
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #4
    whats the error?
     
    DarkMindZ, Mar 21, 2008 IP
  5. lephron

    lephron Active Member

    Messages:
    204
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    53
    #5
    lephron, Mar 21, 2008 IP