ThinkPhp 生成静态页面
Posted 菜鸟
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ThinkPhp 生成静态页面相关的知识,希望对你有一定的参考价值。
//开启静态缓存
‘html_CACHE_ON‘ => true, //开启缓存
‘HTML_CACHE_TIME‘ =>60, //开启缓存时间
‘HTML_FILE_SUFFIX‘ => ‘.shtml‘, //生成缓存文件的后缀名
‘HTML_PATH‘ => ‘Html‘, //生成缓存文件保存目录
‘HTML_CACHE_RULES‘=>array(
‘Index:index‘ => ‘{:controller}/{:action}‘,
‘Seller:index‘ => ‘{:controller}/{:action}‘,
‘Course:index‘ => ‘{:controller}/{:action}‘ ,
//‘Course/cat/‘ => ‘{:controller}/{:action}‘ ,
‘Course:cat‘=>‘{:controller}/{:action}_{cat}‘,
‘Course:detail‘=>‘{:controller}/{:action}_{id}‘,
‘Task:task‘=>‘{:controller}/{:action}‘,
‘Dailyanswer:dailyQuesAns‘=>‘{:controller}/{:action}_{history}‘,
‘Dailyanswer:answer‘=>‘{:controller}/{:action}_{id}_{hid}‘,
)
以上是关于ThinkPhp 生成静态页面的主要内容,如果未能解决你的问题,请参考以下文章