无法使 Content-Range 请求在 IIS7 和 IIS8 中工作

无法使 Content-Range 请求在 IIS7 和 IIS8 中工作

我正在向 IIS7 和 IIS8 服务器发出相同类型的请求,但我一直收到此信息416回复

$ curl-7.23.1-win64-ssl-sspi>curl -H Range:bytes=16- -I http://my.local.host/dotnetrocks_0813_syme_battochi.mp3

HTTP/1.1 416 Requested Range Not Satisfiable  
Content-Length: 45740117  
Content-Type: audio/mpeg  
Last-Modified: Wed, 24 Oct 2012 09:14:29 GMT  
Accept-Ranges: bytes  
ETag: "97ab9ff8c7b1cd1:0"  
Server: Microsoft-IIS/8.0  
X-Powered-By: ASP.NET  
Date: Tue, 30 Oct 2012 18:54:31 GMT  
Content-Range: bytes */0

该范围显然在文件大小范围内,但我仍然没有得到206回应。我在这里遗漏了什么?

答案1

我遇到了同样的问题,并在https://stackoverflow.com/questions/18882776/curl-default-get-request-isnt-recognized-by-php

概要:仅指定标头选项-I会导致请求方法为 HEAD。通过指定-X选项强制使用 GET。

例子: curl -H Range:bytes=16- -I -X GET http://my.local.host/dotnetrocks_0813_syme_battochi.mp3

相关内容