Redirect non-www to www in .htaccess

后端 未结 13 1672
轻奢々
轻奢々 2020-11-22 05:51

I have this in my .htaccess file:

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

but whenever I

13条回答
  •  有刺的猬
    2020-11-22 06:17

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

    For Https

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

提交回复
热议问题