在NGINX的查询参数中转义“〜*”

时间:2018-10-11 16:54:43

标签: nginx nginx-location

我需要向后端发送一个带有“〜*”值的查询参数(用于休眠表达式),但是nginx捕获了它并响应404,如何对其进行转义?我使用nginx 1.15.0 谢谢

1 个答案:

答案 0 :(得分:0)

如果要使用正则表达式位置,只需添加args:

location ~* ^/service/(.*) {
  proxy_pass http://apache/$1$is_args$args;
}