我想将 Nginx 中的一个特定 URL 重定向到“未找到”或“隐藏”
网址:/wp-admin/load-scripts.php?c=1&load[]=jquery-effects-blind
原因:https://hackerone.com/reports/925425
我的 nginx.conf 中的代码是,它不起作用:(
server {
listen 80 default_server;
server_name _;
location ~ load-scripts\.php|load-styles\.php {
deny all;
}
}