像 /admin/somefile 这样的 URL?某些参数应该可以工作
像 /admin/somefile?someparameters#authorize 这样的 URL 应该返回 404
所以我在网址末尾寻找“#authorize”
现在我正在尝试类似的事情
location ~* ^/admin/index.php {
return 200; #it's just an example
}
location ~* /admin/.*\#authorize {
return 404;
}
但是每页仍然返回200 是否可以使用正则表达式在 nginx 中执行此操作?