我在Mac mini服务器上安装了新的WordPress。该站点使用SSL,并拥有StartCom提供的最新有效证书。
网站加载,但没有CSS或主题。
主要是,我无法进入wp admin(或wp login.php),因为它使用两个301重定向,然后是多个302重定向进行重定向。我用过http://redirectdetective.com 想知道发生了什么,但现在我不知道如何修复重定向。
这是我的。htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]