-1
我在IIS上配置了代碼點火器項目。我正面臨緩存問題。我想禁用緩存。但是我發現的每一種方法都沒有禁用它。我已經在構造函數中嘗試了以下代碼:代碼點火器3.1.2 - 禁用緩存不工作
$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");
但它沒有幫助完整。
它在一分鐘後更新緩存。任何人可以提出任何解決方案?