我在我的页面上使用session_cache_limiter('nocache')
,我不想缓存,但它仍在缓存。
我忘记了什么?
谢谢
答案 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');