设置 - >网站&主页URL设置为http://
但所有链接都转到https:// 似乎我的所有页面永久链接都呈现为https。
我的.htaccess中没有任何可以实现此目的的重定向规则。
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /apps.abc.com/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /apps.abc.com/index.php [L]
</IfModule>
# END WordPress
我很难过,已经在这一段时间了,不能为我的生活搞清楚。我知道这会是我做过或不做的事情,我希望有人可以指出它。