wordpress后台登陆地址隐藏
需求:wordpress需要隐藏后台地址,防止恶意登陆修改:
1.打开模板路径wp-content/themes/模板名称/functions.php
2.在顶部加入:
add_action('login_enqueue_scripts','login_protection');
function login_protection(){
if($_GET['admin'] != 'xmspace.net')header('Location: https://crx.xmspace.net/');
}
2.保存,测试未登陆情况下访问后台地址,自动跳转默认首页
页:
[1]