您可以在中尝试一些Apache代码。htaccess文件将任何http重定向到https。并确保wordpress设置指向https而不是http。
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTP_HOST} "www.domain.com"
RewriteRule ^(.*)$ https://domain.com%{REQUEST_URI} [L,R=301]
抱歉语法突出显示。不确定此处的Apache指令的语言代码是什么。