| 12345678910111213 |
- <?php
- return [
- // 默认模块名
- 'default_module' => 'index',
- 'exception_handle' => '\\app\\index\\exception\\Http',
- 'html_cache_on' => true, // 开启静态缓存
- 'html_cache_time' => 7200, // 全局静态缓存有效期(秒)
- 'html_file_suffix' => '.shtml', // 设置静态缓存文件后缀
- 'html_cache_compile_type' => 'file',//缓存存储驱动
-
- ];
- ?>
|