你说得对,这是一个名为“better WP Security”的插件
我按照通过ftp备份的文件中的建议搜索了“418”,发现了以下内容:
$bwpsmemlimit = (int) ini_get( \'memory_limit\' )
//if they\'re locked out or banned die
if ( ( $bwpsoptions[\'id_enabled\'] == 1 ||$bwpsoptions[\'ll_enabled\'] == 1 ) && $this->checklock( $current_user->user_login ) ) {
wp_clear_auth_cookie();
@header( \'HTTP/1.0 418 I\\\'m a teapot\' );
@header( \'Cache-Control: no-cache, must-revalidate\' );
@header( \'Expires: Thu, 22 Jun 1978 00:28:00 GMT\' );
die( __( \'error\', $this->hook ) );
}
所以我推测,因为我是通过ftp备份网站的,所以安全插件一定会因为流量太大而将我锁定。10分钟后,我可以再次回到现场。