|
Hello,
We experienced a global attack which was targetted to the WordPress script wp-login.php. The attack affected all servers and in order to get it filtered we had to block all requests to files with name wp-login.php. We will need to keep that script blocked until the attack has stopped. We would suggest you to secure your wp-login.php with .htaccess by adding the following to it.
<Files wp-login.php>
Order Deny,Allow
Deny from all
Allow from 11.11.11.11
</Files>
Please note you need to replace 11.11.11.11 with your IP address so that you can access wp-login.php.
意思就是,218所在的服务器遭到攻击,原因是攻击者对wordpress程序的wp-login.php这个文件进行了攻击,所以服务商只能屏蔽这个文件的访问直到攻击结束,给出的解决方案,就是在根目录的.htaccess文件加上上面那段,把里面的ip地址改成你自己使用的ip,这样你才能访问后台
检查你自己的IP http://ip138.com |
|