how to redirect www and non www to https for specific domain using htaccess

前端 未结 3 515
感情败类
感情败类 2021-02-09 20:21

I need to redirect www and non www to https. I have looked everywhere on stackoverflow but can\'t find quite what I\'m looking for.

The rules are:

  • example.
3条回答
  •  日久生厌
    2021-02-09 20:54

    #First rewrite any request to the wrong domain to use the correct one (i.e. www.)
    RewriteCond %{HTTP_HOST} !^www\.
    RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    
    #Now, rewrite to HTTPS:
    RewriteCond %{HTTPS} off
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    

提交回复
热议问题