如果使用WP Security插件锁定了WordPress,则禁用SSL

在周末,我通过Cloudflare实施了SSL,并配置了链接_0,在前端和管理仪表板上都有SSL。

一切都很好,直到我决定暂时禁用WP Security插件来解决我的链接_1问题。我的WordPress管理仪表板被锁定,并显示“重定向查找”错误。

前端也出现问题,但是我通过删除HTTP到https重定向来使我的网站正常运行。但这对管理仪表板没有效果。

如果您遇到类似的情况,不用担心,下面是您可以解决这个问题的方法。

像往常一样,请记住备份现有配置,您很快就会进行修改。

  • 登录到您的服务器(如果您在链接_2上,则应该是您的cPanel)
  • 转到您的WordPress网站的htdocs或根位置
  • 编辑wp-config.php
  • 您会注意到以下两行,其中将SSL定义为true
// iThemes Security Config Details: 2 
define( 'FORCE_SSL_LOGIN', true ); // Force SSL for Dashboard - Security > Settings > Secure Socket Layers (SSL) > SSL for Dashboard 
define( 'FORCE_SSL_ADMIN', true ); // Force SSL for Dashboard - Security > Settings > Secure Socket Layers (SSL) > SSL for Dashboard 
// END iThemes Security - Do not modify or remove this line
  • 将true更改为false,应该如下所示。
// iThemes Security Config Details: 2 
define( 'FORCE_SSL_LOGIN', false ); // Force SSL for Dashboard - Security > Settings > Secure Socket Layers (SSL) > SSL for Dashboard 
define( 'FORCE_SSL_ADMIN', false ); // Force SSL for Dashboard - Security > Settings > Secure Socket Layers (SSL) > SSL for Dashboard 
// END iThemes Security - Do not modify or remove this line

就这些。

尝试访问您的管理仪表板,应该没问题。

类似文章