我可以在 Nginx 中为 WordPress 重定向一个特定的 URL 吗?

我可以在 Nginx 中为 WordPress 重定向一个特定的 URL 吗?

我想将 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;
    }
}

相关内容