0

我在 CodeIgniter 中开发一个页面,但是我突然遇到了关于缓存的问题。

当我进行更改时,会在更改生效前 10 分钟进行 - 这完全是因为缓存。我已添加尝试将所有这些添加到我的控制器构造函数中,但没有效果:

$this->output->set_header("HTTP/1.0 200 OK");
$this->output->set_header("HTTP/1.1 200 OK");
$this->output->set_header("Cache-Control: no-store, no-cache, must-revalidate");
$this->output->set_header("Expires: ". gmdate('D, d M Y H:i:s')."GMT");
$this->output->set_header("Cache-Control: post-check=0, pre-check=0");
$this->output->set_header("Pragma: no-cache"); 
$this->output->cache(0);

有谁知道出了什么问题?或者有什么提示吗?发展成这样太可怕了……

4

0 回答 0