|
发表于 2014-10-23 17:10:47
|
显示全部楼层
這個應該可以的,放在 __construct 裡面:
PHP复制代码
$this->output->set_header('Last-Modified:'.gmdate('D, d M Y H:i:s').'GMT');
$this->output->set_header('Cache-Control: no-store, no-cache, must-revalidate');
$this->output->set_header('Cache-Control: post-check=0, pre-check=0',false);
$this->output->set_header('Pragma: no-cache'); 复制代码 |
|