how to modify .htaccess file to always redirect to www

后端 未结 4 1858
灰色年华
灰色年华 2020-12-09 05:05

I would like to modify my .htaccess file so that when someone comes into my site without typing www the site always redirects them to the www version. For example, if my ur

4条回答
  •  旧时难觅i
    2020-12-09 05:35

    Add something like this immediately after RewriteEngine on:

    RewriteCond %{HTTP_HOST} ^example\.com$
    RewriteRule ^(.*) http://www.example.com/$1 [R=301]
    

提交回复
热议问题