1、网页缓存过时间,浏览器直接读取硬盘缓存,表示日期之前都不在询问
<meta http-equiv="expires" content="Wed, 23 Aug 1978 12:40:27 UTC">
2、每次先询问服务器,自上次设置的更新时间后,有没有更新这个资源
<meta http-equiv="last-modified" content="Wed, 23 Aug 1978 12:40:27 UTC">
3、设置网页是否使用缓存
<meta http-equiv="cache-control" content="no-cache"><<不设置缓存
public:客户端和服务器端都缓存
private:只在客户端缓存
以上是常用配置
参考 菜鸟教程meta讲解