.htaccess - Htaccess Rewrite Rule - direct from mysite.com to www.mysite.com -
can tell me how redirect page mysite.com www.mysite.com? appreciated. thanks.
if mod_rewrite
available, add code mysite.com's .htaccess:
rewriteengine on rewritecond %{http_host} =mysite.com rewriterule ^(.*)$ http://www.mysite.com/$1 [r=301,l]
Comments
Post a Comment