Jump to content

[SOLVED] mystore.com to automatically redirect to www.mystore.com


Recommended Posts

You need to put code like the following in the .htaccess file in your public_html directory:

Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^mystore.com [nc]
rewriterule ^(.*)$ http://www.mystore.com/$1 [r=301,nc]

Link to comment
Share on other sites

  • 1 year later...
×
×
  • Create New...