Use .htaccess to redirect HTTP to HTTPs

后端 未结 17 1566
刺人心
刺人心 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

    The above final .htaccess and Test A,B,C,D,E did not work for me. I just used below 2 lines code and it works in my WordPress website:

    RewriteCond %{SERVER_PORT} 80 
    RewriteRule ^(.*)$ https://www.thehotskills.com/$1 [R=301,L]
    

    I'm not sure where I was making the mistake but this page helped me out.

提交回复
热议问题