后台访问策略方案
编辑nginx配置加入:
location ~ ^/admin {
allow 白名单IP;
.......
deny all;
try_files $uri $uri/ /index.php?$query_string;
}
https://www.fireself.cn/post/102058
编辑nginx配置加入:
location ~ ^/admin {
allow 白名单IP;
.......
deny all;
try_files $uri $uri/ /index.php?$query_string;
}
未登录无法操作