WordPress용 Nginx에서 하나의 특정 URL을 리디렉션할 수 있나요?

WordPress용 Nginx에서 하나의 특정 URL을 리디렉션할 수 있나요?

Nginx의 특정 URL 하나를 '찾을 수 없음' 또는 '숨김'으로 리디렉션하고 싶습니다.

URL: /wp-admin/load-scripts.php?c=1&load[]=jquery-효과-블라인드

이유:https://hackerone.com/reports/925425

nginx.conf의 내 코드는 작동하지 않습니다. :(

server {
    listen 80 default_server;
    server_name _;
    location ~ load-scripts\.php|load-styles\.php {
        deny all;
    }
}

관련 정보