清除网页缓存(html asp php java)
程序员文章站
2022-04-23 17:54:18
...
清除缓存我们只需要设置页面为no-cache就可以了,当然像asp,php这种只需要设置Expires操作即可,具体如下.
HTML网页:
ASP网页:
Response.Expires = -1 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");
JSP网页
response.setHeader("Pragma", "No-cache"); response.setHeader("Cache-Control", "no-cache"); response.setDateHeader("Expires", 1);
推荐阅读
-
在(ASP/PHP/JSP/html/js)中禁止ajax缓存的方法集锦
-
在(ASP/PHP/JSP/html/js)中禁止ajax缓存的方法集锦
-
PHP压缩html网页代码(清除空格,换行符,制表符,注释标记)_PHP
-
php压缩html网页代码(清除空格、换行符、制表符、注释标记等)的方法
-
PHP压缩html网页代码 : 清除空格,制表符,注释标记
-
PHP压缩html网页代码(清除空格,换行符,制表符,注释标记)
-
PHP压缩html网页代码(清除空格,换行符,制表符,注释标记)_php技巧
-
PHP压缩html网页代码(清除空格,换行符,制表符,注释标记)
-
禁止ajax缓存的方法(ASP/PHP/JSP/html/js)
-
PHP压缩html网页代码(清除空格,换行符,制表符,注释标记)_PHP教程