I've got a site in Godaddy, but I would like it to automatically add www. It is hosted elsewhere, however. When I put a forward for mysite.com to http://www.mysite.com, it doesn't do anything. Is there anyway to handle this with the HTaccess? Thanks
Create a .htaccess file & add this in it replacing MySite.com with your site name: Options +FollowSymlinks RewriteEngine on rewritecond %{http_host} ^MySite.com [nc] rewriterule ^(.*)$ http://www.MySite.com/$1 [r=301,nc] That should work for redirection.