Use .htaccess to redirect HTTP to HTTPs

后端 未结 17 1562
刺人心
刺人心 2020-12-02 05:51

Please, don\'t recommend me the long and very detailed thread with more than 173 upvotes. It didn\'t work for me. I have also tried many others (1, 2, 3, 4). They all give m

17条回答
  •  抹茶落季
    2020-12-02 06:16

    Just add this code, And it will work like charm:

    
        RewriteEngine On
        RewriteCond %{HTTP_HOST}#%{HTTPS}s ^www\.([^#]+)#(?:off|on(s)) [NC]
        RewriteRule ^ http%2://%1%{REQUEST_URI} [R=301,L]
    
    

提交回复
热议问题