提升wordpress后台安全最有效的方式之一,禁止某此ip段访我们wordpress后台的页面,同时只添加我们自己的ip这样有效的降低了我们wordpress主题后台被暴力破解的可能性。
方法很简单,只需要通过网站的.htaccess文件进行修改就可以实现,整体的代码如下
1 2 3 4 5 6 7 8 9 10 11 12 |
AuthUserFile /dev/null AuthGroupFile /dev/null AuthName "WordPress Admin Access Control" AuthType Basic <LIMIT GET> order deny,allow deny from all # whitelist Syed's IP address allow from xx.xx.xx.xxx # whitelist David's IP address allow from xx.xx.xx.xxx </LIMIT> |
需要把xx的部分修改成自己常用ip这样就可以实现其它ip段的访问了。