x-foo-bar
使用$http_name
$http_x-foo-bar变量的值变为“ -foo-bar”
看起来像是试图找到名为x的标头,然后将-foo-bar附加到值
有什么办法可以逃脱这些“-”
我试过了/但是
$http_x / -foo / -bar给出/ -foo / -bar的值
最佳答案
根据the documentation:
原文链接:https://www.f2er.com/nginx/532317.htmla variable name is the field name converted to lower case with dashes
replaced by underscores
尝试:
$http_x_foo_bar