how to modify .htaccess file to always redirect to www

后端 未结 4 1846
灰色年华
灰色年华 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条回答
  •  失恋的感觉
    2020-12-09 05:47

    I use the code below. It can be used for any domain name. You just need to enter it in your .htaccess file.

    RewriteEngine on  
    RewriteCond %{HTTP_HOST} !^www\.
    RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
    

    (edited to have all the code in the same block)

提交回复
热议问题