下面是可以用作if判断的全局变量 $args : 这个变量等于请求行中的参数,同$query_string $content_length : 请求头中的Content-length字段。 $content_type : 请求头中的Content-Type字段。 $document_root : 当前请求在root指令中指定的值。 $host : 请求主机头字段,否则为服务器名称。 $http_user_agent : ...
nginx 参数解码 nginx带参数 $args #请求中的参数值 $query_string #同 $args $arg_NAME #GET请求中NAME的值 $is_args #如果请求中有参数,值为"?",否则为空字符串 $uri #请求中的当前URI(不带请求参数,参数位于$args),可以不同于浏览器传递的$request_uri的值,它可以通过内部重定向,或者使用index指令进...
$query_string #同 $args $arg_NAME #GET请求中NAME的值 $is_args #如果请求中有参数,值为"?",否则为空字符串 $uri #请求中的当前URI(不带请求参数,参数位于$args),可以不同于浏览器传递的$request_uri的值,它可以通过内部重定向,或者使用index指令进行修改,$uri不包含主机名,如"/foo/bar.html"。 $d...
要求是 如果请求中的$query_string包含"q=数字",301重新定向到首页交由index.php处理。否则只是301重新定向到首页。 location ~* ^/wap/ { # if ( $http_user_agent ~* "(MSIE|bot|Spider|Slurp)" ) { # } if ($args ~* "p=\d+$") { rewrite ^ $scheme://$host/?p=$arg_p? permanent; ...
$request_length args: $args arg_pid: $arg_pid is_args: $is_args query_string: $query_string host: $host http_user_agent: $http_user_agent http_referer: $http_referer http_via: $http_via request_time: $request_time https: $https request_filename: $request_filename document_root: $...
$args,$query_string 请求中的参数,如www.123.com/1.php?a=1&b=2的$args就是a=1&b=2 $content_length http请求信息里面的“Content-Length” $conten_type http请求信息里面的“Content-Type” $document_root nginx虚拟主机配置文件中的root参数对应的值 ...
$args: 客户端请求中的参数 $query_string: 等同于$args, 客户端请求的参数 $nginx_version: 当前nginx版本 $status: 服务器响应状态码 $server_addr: 服务器地址 $server_port: 请求到达的服务器端口号 $server_protocol: 请求的协议版本 $content_type: HTTP请求信息里的Content-Type字段 ...
$args: 请求中的参数部分,同$query_string。 $scheme: 请求使用的协议,比如 http 或 https。 $server_name: Nginx 配置中当前虚拟主机的名称。 $server_port: Nginx 监听的端口号。 通过使用这些内置变量,可以方便地在Nginx配置中进行动态参数配置、请求头部字段获取等操作。同时,还可以像使用任何其他Nginx变量一样...
$query_string// 与$args相同 等于当中URL的参数(GET),如a=1&b=2 $request_body// 记录POST过来的数据信息 $request_body_file//客户端请求主体信息的临时文件名 $request_method//客户端请求的动作,通常为GET或POST,如:GET $request_uri//包含请求参数的...
$is_args表示请求中的 URI 是否带参数,如果带参数,$is_args 值为 ?,如果不带参数,则是空字符串 $limit_rate表示当前连接的限速是多少,0 表示无限速 $nginx_version表示当前 Nginx 的版本号 $query_string请求 URI 中的参数,与 query_string 是只读的不会改变 ...