nginx有参传入配置

location /wjdc/wjdcById.html/{
            proxy_set_header Host $host:81;#监听81
            proxy_set_header X-Real-IP  $remote_addr; 
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            if ($query_string ~* "id=(\d+)$"){#判断字符串参数,参数为id=
                set $Id $1;//设置变量$Id 接受id参数
                proxy_pass http://127.0.0.1:8080/test/test.jspx?id=$Id;
                break;
            }
            proxy_pass http://127.0.0.1:8080/wjdc/wjdcById.jspx;
    
        }

转载于:https://my.oschina.net/u/3144126/blog/1929794

你可能感兴趣的:(nginx有参传入配置)