我在IIS上配置了代码点火器项目。我正面临缓存问题。我想禁用缓存。但我发现的每一种方法都没有禁用它。我在构造函数中尝试了以下代码:
$this->output->set_header('Last-Modified: ' . gmdate("D, d M Y H:i:s") . ' GMT');('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0');
$this->output->set_header('Pragma: no-cache');
$this->output->set_header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
但它没有帮助。
一分钟后更新缓存。任何人都可以建议任何解决方案吗?
答案 0 :(得分:0)
这是由于php的opcache。我已经注释掉php.ini文件中的所有opcache行。现在它没有缓存页面。