场景一:
请求时header中参数带有下划线‘_’时Nginx转发后此类参数丢失。
原因:nginx默认request的header中包含’_’时,会自动忽略掉。
解决方案:
1、header参数不使用下划线;
2、在Nginx.conf文件http部分配置参数:underscores_in_headers on;