可能重复:
404 标头 - HTTP 1.0 或 1.1?
我有一个简单的 PHP 代码,它使用发送 404header
header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
echo $_SERVER["SERVER_PROTOCOL"];
但是当使用curl
command 和 force 时1.0
,它会返回..
curl -0 -v 'http://www.example.com/test.php'
> GET /test.php HTTP/1.0
< HTTP/1.1 404 Not Found
< Server: nginx
< Date: Sat, 27 Oct 2012 08:51:27 GMT
< Content-Type: text/html
< Connection: close
<
* Closing connection #0
HTTP/1.0
如您所见$_SERVER["SERVER_PROTOCOL"]
,是 1.0 但标题给了我1.1
,这是什么原因?