I am sure this has been covered but my searches showed up nothing. How would one redirect http://mysite.com to http://www.mysite.com? thanks
Thanks much for that URL. That works for my normal HTML site and great. But I have MAMBO sites and it doesn't appear to work for that. Any thoughts on that?
Does mambo use any .htaccess stuff? I tried turning on the hard links on my wordpress with this hack on and it stopped working.
try this mod_rewrite trick in your .htaccess file: RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com [NC] RewriteRule ^(.*) http://www.yourdomain.com/$1 [L,R=301]
You can use this code: <META HTTP-EQUIV="Refresh" CONTENT="5; URL=html-redirect.html"> PHP: I use it on my teen sexuality website and it works very well, you can also edit your .htaccess file or you can use cpanel to setup a basic redirection.
This is what I use: RewriteEngine On RewriteCond %{HTTP_HOST} !^www\.mysite\.com [NC] RewriteRule ^(.*) http://www.mysite.com/$1 [L,R=301] Code (markup): in .htaccess