Nginx的location
指令不能直接匹配查询参数,所以需要通过其他方式来处理。这里是一个使用if
指令结合查询参数来实现的方法。该方法会在请求路径中带有特定查询参数时返回404。
使用if
指令匹配查询参数
-
打开Nginx配置文件:
sudo vim /etc/nginx/sites-available/default
-
添加以下配置:
在
server
块中添加一个location
块和if
语句来匹配特定的查询参数并返回404状态码。server {listen 80;server_name harbor.shgbitai.com;location / {# 其他正常的配置}# 匹配路径为/account/sign-in,带有globalSearch查询参数的请求,并返回404location /account/sign-in {if ($arg_globalSearch) {return 404;}# 正常的处理逻辑try_files $uri $uri/ =404;}error_page 404 /404.html;location = /404.html {internal;root /usr/share/nginx/html; # 这里需要指向您的404错误页面} }
-
创建或修改404错误页面:
确保你有一个404错误页面,例如
/usr/share/nginx/html/404.html
。可以使用以下命令创建一个简单的404页面:echo "404 Not Found - The requested resource could not be found." | sudo tee /usr/share/nginx/html/404.html
-
测试Nginx配置:
在重新加载Nginx之前,先测试配置文件是否有语法错误:
sudo nginx -t
如果测试通过,你应该会看到类似如下的输出:
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful
-
重新加载Nginx:
重新加载Nginx以使更改生效:
sudo systemctl reload nginx
解释
if ($arg_globalSearch)
:在location /account/sign-in
块中,使用if
语句检查globalSearch
查询参数是否存在。如果存在,则返回404状态码。location = /404.html { internal; root /usr/share/nginx/html; }
:配置404错误页面的位置和内容。
通过这种方法,当用户访问https://XXXXX/account/sign-in?globalSearch=任意值
时,会直接返回404页面。确保根据实际的Nginx配置文件路径和服务器环境调整相应的路径和配置。