Codeigniter标头在safari浏览器中不起作用

时间:2014-09-20 08:40:25

标签: php

$this->output->set_header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");     
$this->output->set_header("Cache-Control: post-check=0, pre-check=0", false);   
$this->output->set_header("Pragma: no-cache");   

在Safari浏览器中无效。如果按下Safari浏览器,如何重新加载整个页面?

1 个答案:

答案 0 :(得分:0)

这实际上与HTTP缓存协议无关。 Safari假设已经加载的页面可以简单地恢复。我所知道的唯一解决方法是实现一个将重新加载页面的JavaScript事件监听器。 Related question