nginx标头变量在标头名称中转义特殊字符

前端之家收集整理的这篇文章主要介绍了nginx标头变量在标头名称中转义特殊字符 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想在Nginx.conf中读取其中包含“-”的标题

x-foo-bar

使用$http_name

$http_x-foo-bar变量的值变为“ -foo-bar”

看起来像是试图找到名为x的标头,然后将-foo-bar附加到值

有什么办法可以逃脱这些“-”

我试过了/但是
$http_x / -foo / -bar给出/ -foo / -bar的值

最佳答案
根据the documentation

a variable name is the field name converted to lower case with dashes
replaced by underscores

尝试:

$http_x_foo_bar
原文链接:https://www.f2er.com/nginx/532317.html

猜你在找的Nginx相关文章