系统相关
首页 > 系统相关> > 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

标签:nginx,http-headers
来源: https://codeday.me/bug/20191118/2025975.html