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
Use .htaccess file with these lines: RewriteEngine On RewriteCond %{HTTP_HOST} ^www.domain.com$ RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L] Code (markup):