我正在使用 CURL 测试对我的 nginx 服务器的 HEAD 请求。所服务的文件是一个简单的PHP
文件。
如果我使用GET
:
$ curl -XGET http://test.com/phpinfo.php -I
HTTP/1.1 200 OK
Date: Tue, 09 Apr 2013 00:35:35 GMT
Content-Type: text/html
Connection: keep-alive
Content-Length: 72080
但是,如果我使用HEAD
:
$ curl -XHEAD http://test.com/phpinfo.php -I
HTTP/1.1 200 OK
Date: Tue, 09 Apr 2013 00:37:00 GMT
Content-Type: text/html
Connection: keep-alive
为什么如果请求是HEAD
,nginx 会省略Content-Length
标头?php 脚本非常简单,并且没有HEAD
以任何特殊方式响应。
我是否可以在 nginx 中打开任何选项,以便它也可以发送Content-Length
for ?HEAD
相关 nginx 信息:
nginx version: nginx/1.2.8
built by gcc 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1)
TLS SNI support enabled
configure arguments: --prefix=/usr/local/nginx-1.2.8 --with-http_ssl_module --with-http_realip_module --with-http_gzip_static_module --with-pcre --conf-path=/etc/nginx/nginx.conf --add-module=../headers-more-nginx-module-0.19rc1
配置:
user www-user;
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
client_max_body_size 10M;
sendfile on;
keepalive_timeout 65;
more_clear_headers "Server";
gzip on;
gzip_types text/plain text/css application/json application/javascript application/x-javascript text/javascript text/xml application/xml application/rss+xml application/atom+xml application/rdf+xml;
server {
server_name test.com;
root /www;
index index.php index.html index.htm;
listen 80 default_server;
rewrite ^/(.*)/$ /$1 permanent; #remove trailing slash
#charset koi8-r;
#access_log logs/host.access.log main;
include general/*.conf;
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location ~ \.php$ {
fastcgi_intercept_errors on;
fastcgi_pass unix:/run/php/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
}
答案1
HTTP请求nginx
不包含响应标头的一个原因可能是,Content-Length
HEAD
根据定义HEAD
,对请求的响应响应中不得包含消息正文(看RFC 2616更多细节)。
现在,一个 HTTP 服务器可以发送请求Content-Length: 0
响应HEAD
,但这是网络上的附加信息,不一定需要。我怀疑,这nginx
只是省略了多余的响应标头,因为没有Content-Length
在对请求的响应中包含该标头HEAD
。
希望这可以帮助!