.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

Popular posts from this blog

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -

java - Getting corefrences with Standard corenlp package -

Java - Returning an array from a method to main -