下面是可以用作if判断的全局变量  \* `$args`: #这个变量等于请求行中的参数,同`$query\_string` \* `$content\_length`: 请求头中的Content\-length字段。 \* `$content\_type`: 请求头中的Content\-Type字段。 \* `$document\_root`: 当前请求在root指令中指定的值。 \* `$host`: 请求主机头字段,否则为服务器名称。 \* `$http\_user\_agent`: 客户端agent信息 \* `$http\_cookie`: 客户端cookie信息 \* `$limit\_rate`: 这个变量可以限制连接速率。 \* `$request\_method`: 客户端请求的动作,通常为GET或POST。 \* `$remote\_addr`: 客户端的IP地址。 \* `$remote\_port`: 客户端的端口。 \* `$remote\_user`: 已经经过Auth Basic Module验证的用户名。 \* `$request\_filename`: 当前请求的文件路径,由root或alias指令与URI请求生成。 \* `$scheme`: HTTP方法(如http,https)。 \* `$server\_protocol`: 请求使用的协议,通常是HTTP/1.0或HTTP/1.1。 \* `$server\_addr`: 服务器地址,在完成一次系统调用后可以确定这个值。 \* `$server\_name`: 服务器名称。 \* `$server\_port`: 请求到达服务器的端口号。 \* `$request\_uri`: 包含请求参数的原始URI,不包含主机名,如:”/foo/bar.php?arg=baz”。 \* `$uri`: 不带请求参数的当前URI,$uri不包含主机名,如”/foo/bar.html”。 \* `$document\_uri`: 与$uri相同。  例:`http://localhost:88/test1/test2/test.php` $host:localhost $server\\\_port:88 $request\\\_uri:\[http://localhost:88/test1/test2/test.php\](http://localhost:88/test1/test2/test.php) $document\\\_uri:/test1/test2/test.php $document\\\_root:/var/www/html $request\\\_filename:/var/www/html/test1/test2/test.php