使用nginx 1.5.3。
这是我的配置
location ~* \.(ico|css|js|gif|jpe?g|png|swf)$ {
root /project;
expires 30d;
access_log off;
}
在Firefox上一切正常。在'http'
上的chrome上,它是缓存文件。在'https'
以上,它会缓存除swf
个文件以外的所有文件,为什么?请帮忙。如何在https上通过chrome缓存swf文件。?