将此添加到.htaccess
在站点根目录中:
#Force SSL
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://yourdomain.com/$1 [R=301,L]
</IfModule>
不要将其添加到WP规则中(
# BEGIN WordPress
,
# END WordPress
).
这将把所有请求重定向到HTTPS。还可以在WP后端(options general.php)中更改URL。
如果您安装的插件导致错误,并且您无法通过WP后端停用它,只需通过FTP重命名或删除文件夹即可。