服务器经常会看到有IP扫wordpress的后台登录地址,尝试登录,飞牛网上学来的一个wordpress技巧修改wordpress后台默认登录地址。
在模板的functions.php添加以上代码,这样就只能通过http://siteurl/wp-login.php?word=feinews 访问登陆后台页面。
//保护后台登录
function login_protection(){
if($_GET['word'] != 'feinews')header('Location: http://www.xxx.com/');
}
add_action('login_enqueue_scripts','login_protection');
你这里好东西真不少,咋就没看到呢?
我弄过去试一下去