Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
变更日志将0.7.8 版列为引入符号以从内部$arg_X访问 HTTP GET 参数的版本。Xnginx.conf
$arg_X
X
nginx.conf
不幸的是,wiki 是最新的。nginx.conf在此版本之前,您如何从内部访问 HTTP GET 参数?
目前,我最好的方法是匹配$args.
$args
例如,if ($arg_user = "jim")您可以说,而不是说if ($args = "user=jim")。此特定示例仅适用于单个参数,因为多个参数可以以任何顺序出现;这种情况应该用正则表达式处理。
if ($arg_user = "jim")
if ($args = "user=jim")