设置nocache但仍然缓存

时间:2014-06-24 16:31:47

标签: php caching

我在我的页面上使用session_cache_limiter('nocache'),我不想缓存,但它仍在缓存。

我忘记了什么?

谢谢

1 个答案:

答案 0 :(得分:-1)

header('Cache-Control: no-cache, no-store, must-revalidate, max-age=0');
header('Expires: '.gmdate('D, d M Y H:i:s', time() - 24 * 3600).' GMT');
header('Pragma: no-cache');