RT,我印相里是支持的,但是今天部署了一个nginx就是无论如何都返回200(而不是206)
我的nginx配置如下:
server {
proxy_cache_path /var/www/cache levels=1:2 keys_zone=one:10m inactive=60m;
server {
listen 80;
server_name test.bigsquirrel.me;
proxy_cache one;
location / {
proxy_pass
http://bigsquirrel.me;
}
}
}
我很确定 nginx 已经 cache 了这个页面(重复访问不会回源),但是对于 Range 请求始终是206.
nginx 版本1.2.1