app.php 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. // +----------------------------------------------------------------------
  12. // | 应用设置
  13. // +----------------------------------------------------------------------
  14. use think\facade\Env;
  15. return [
  16. // 应用地址
  17. 'app_host' => Env::get('app.host', ''),
  18. // 应用的命名空间
  19. 'app_namespace' => '',
  20. // 是否启用路由
  21. 'with_route' => true,
  22. // 是否启用事件
  23. 'with_event' => true,
  24. // 应用映射(自动多应用模式有效)
  25. 'app_map' => [],
  26. // 域名绑定(自动多应用模式有效)
  27. 'domain_bind' => [],
  28. // 禁止URL访问的应用列表(自动多应用模式有效)
  29. 'deny_app_list' => ['common'],
  30. // 开启应用快速访问 如果你完全不需要单应用模式,也可以设置使用严格的多应用模式
  31. 'app_express' => true,
  32. // 默认应用
  33. 'default_app' => 'admin',
  34. // 默认时区
  35. 'default_timezone' => 'Asia/Shanghai',
  36. // 空控制器名
  37. // 'empty_controller' => 'error',
  38. 'empty_controller' => 'index',
  39. 'empty_module' => 'error',
  40. // 默认异常页面的模板文件
  41. 'exception_tmpl' => app()->getThinkPath() . 'tpl/think_exception.tpl',
  42. 'http_exception_template'=>[
  43. 404 => \think\facade\App::getAppPath() . '404.html',
  44. 401 => \think\facade\App::getAppPath() . '401.html',
  45. ],
  46. // // 默认跳转页面对应的模板文件
  47. // 'dispatch_success_tmpl' => app()->getThinkPath() . 'tpl/dispatch_jump.tpl',
  48. // 'dispatch_error_tmpl' => app()->getThinkPath() . 'tpl/dispatch_jump.tpl',
  49. // 默认跳转页面对应的模板文件
  50. // 'dispatch_success_tmpl' => \think\facade\App::getAppPath(). '../view/template/dispatch_jump.tpl',
  51. 'dispatch_success_tmpl' => app()->getAppPath(). '../view/template/dispatch_jump.tpl',
  52. 'dispatch_error_tmpl' => app()->getAppPath(). '../view/template/dispatch_jump.tpl',
  53. // 'exception_tmpl' => app()->getAppPath() . '/../view/template/exception.tpl',
  54. // 'exception_tmpl' => app()->getAppPath() ."..\view\template\exception.tpl" ,
  55. // 错误显示信息,非调试模式有效
  56. 'error_message' => '您访问的内容不存在',
  57. // 显示错误信息
  58. 'show_error_msg' => true,
  59. ];