美文网首页
nginx 自动忽略request中header name包含下

nginx 自动忽略request中header name包含下

作者: 提不起的你 | 来源:发表于2017-09-19 15:29 被阅读0次

    做token验证的时候遇到问题:在本地可以获取前端header传的参数,但是部署到服务器获取的就是null(服务器地址用nginx做了代理)

    原因:

      nginx代理默认会把header的参数的 "_" 下划线去掉 所以部署后就获取不到。
    

    解决:

      1, 在header里不要用 "_" 下划线,可以用驼峰命名或者其他的符号代替。
    
      2, 在nginx里的 nginx.conf文件中配置http的部分添加 : underscores_in_headers on;(默认值是off)

    相关文章

      网友评论

          本文标题:nginx 自动忽略request中header name包含下

          本文链接:https://www.haomeiwen.com/subject/konwsxtx.html