app.php 410 B

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