标签: nginx
如何在nginx中获取两个查询参数(属性和类别)的值?
示例链接:
example.com/?attribute=2&category=1
我的nginx代码:
if ($args ~ "attribute=(\d+)") { set $attribute $1; } if ($args ~ "category=(\d+)") { set $category $1; }
这样,我只能获得属性值。
答案 0 :(得分:0)
各个参数可用作以$arg_开头的变量。例如:
$arg_
$arg_attribute $arg_category
有关详细信息,请参见this document。