Use .htaccess to redirect HTTP to HTTPs

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

    It works for me:

    # BEGIN WordPress
    
    RewriteEngine On
    RewriteCond %{HTTPS} !on           
    RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    
    
    # END WordPress
    

提交回复
热议问题