need help with redirect

Discussion in 'Search Engine Optimization' started by vipeSEO, Nov 30, 2005.

  1. #1
    http://rfidstatus.com ranks much better than http://www.rfidstatus.com

    clearly i messed up when linking the site


    I wanna know, is there any way I can make it so http://www.rfidstatus.com redirects to http://rfidstatus.com? I tried doing it through my web provider's control panel and the redirect doesn't work. It gets caught in some kind of loop.

    Anyone have this problem? Would a java redirect work on the search engines?

    Thanks
     
    vipeSEO, Nov 30, 2005 IP
  2. Sorror

    Sorror Active Member

    Messages:
    376
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    60
    #2
    Use .htaccess file with these lines:
    RewriteEngine On 
    RewriteCond %{HTTP_HOST} ^www.domain.com$
    RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L]
    Code (markup):
     
    Sorror, Nov 30, 2005 IP