app.php 866 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. return [
  3. // 异常页面的模板文件
  4. //'exception_tmpl' => CMF_ROOT . '/themes/404.html',
  5. // 错误显示信息,非调试模式有效
  6. 'error_message' => '页面错误!请稍后再试~',
  7. // 显示错误信息
  8. 'show_error_msg' => true,
  9. // 异常处理handle类 留空使用 \think\exception\Handle
  10. 'exception_handle' => '',
  11. // 是否开启多语言
  12. 'lang_switch_on' => false,
  13. // 默认语言
  14. 'default_lang' => 'zh-cn',
  15. // 默认模块名
  16. 'default_module' => 'Portal',
  17. // 默认控制器名
  18. 'default_controller' => 'Index',
  19. // 默认操作名
  20. 'default_action' => 'index',
  21. // 默认全局过滤方法 用逗号分隔多个
  22. 'default_filter' => 'htmlspecialchars,stripslashes,strip_tags',
  23. ];