各类常见语言清除网页缓存方法汇总
程序员文章站
2022-08-28 09:07:13
本文实例汇总了各类常见语言清除网页缓存方法。分享给大家供大家参考。具体实现方法如下:
一般来说,清除缓存我们只需要设置页面为no-cache就可以了,当然像asp,php...
本文实例汇总了各类常见语言清除网页缓存方法。分享给大家供大家参考。具体实现方法如下:
一般来说,清除缓存我们只需要设置页面为no-cache就可以了,当然像asp,php这种只需要设置expires操作即可,具体如下。
html网页:
复制代码 代码如下:
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache, must-revalidate">
<meta http-equiv="expires" content="wed, 26 feb 1997 08:21:57 gmt">
<meta http-equiv="cache-control" content="no-cache, must-revalidate">
<meta http-equiv="expires" content="wed, 26 feb 1997 08:21:57 gmt">
或者
复制代码 代码如下:
<meta http-equiv="expires" content="0">
asp网页:
复制代码 代码如下:
response.expires = -1
response.expiresabsolute = now() - 1
response.cachecontrol = "no-cache"
response.expiresabsolute = now() - 1
response.cachecontrol = "no-cache"
php网页:
复制代码 代码如下:
header("expires: mon, 26 jul 1997 05:00:00 gmt");
header("cache-control: no-cache, must-revalidate");
header("pragma: no-cache");
header("cache-control: no-cache, must-revalidate");
header("pragma: no-cache");
jsp网页:
复制代码 代码如下:
response.setheader("pragma", "no-cache");
response.setheader("cache-control", "no-cache");
response.setdateheader("expires", 1);
response.setheader("cache-control", "no-cache");
response.setdateheader("expires", 1);
希望本文所述对大家的web程序设计有所帮助。
上一篇: CIO使命悄然巨变:下一站首席互联网官