Bootstrap

nginx去掉304 Not Modified

配置文件如下:

location / {
		expires -1;
		if_modified_since off;
		add_header Last-Modified "";
		add_header Cache-Control no-cache;
		etag off;
        ......
}

 

;