|
发表于 2011-11-4 09:58:04
|
显示全部楼层
本帖最后由 incool 于 2011-11-4 09:59 编辑
baiyuxiong 发表于 2011-11-4 09:55 ![](static/image/common/back.gif)
需在要配置文件里配。
手册上有说明
已经配置了
$config['enable_hooks'] = TRUE;
$hook['pre_controller'] = array(
'class' => 'Browser_Cache',
'function' => 'browser_cache',
'filename' => 'browser_cache.php',
'filepath' => 'hooks',
);
class Browser_Cache{
function __construct(){
}
function browser_cache(){
die('fffffffffffffff');
$last_update='60*60*24*7';
$this->output->set_header('Expires: '.gmdate('D, d M Y H:i:s', $last_update).' GMT');
$this->output->set_header("Cache-Control: public");
$this->output->set_header("Pragma: cache");
}
}
die的话,没内容。。。
|
|