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 生成静态页面的主要内容,如果未能解决你的问题,请参考以下文章

asp 如何生成静态页面 具体步骤如何?

ThinkPHP的静态化页面方法

怎样将discuz的动态页面生成HTML的静态页面,以便搜索引擎更好的收录我的网站呢?请高手多多指导!

如何配置thinkphp的伪静态重写

thinkphp如何生成条形码?

thinkphp3.2中开启静态缓存后对404页面的处理方法