OK, so I have this soccer site that has been up like 3 months now and I just realised, I haven't done a redirect So I tried doing one just then but it didn't work What do I put into a .htaccess file so that my domain redirects from http://www.soccer-help.com to http://soccer-help.com ? Thanks in advance
for .htaccess,use this code Options +FollowSymlinks RewriteEngine on rewritecond %{http_host} ^domain.com [nc] rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc] replace domain.com with your site name.