12345678910111213141516171819202122232425262728293031323334 |
- <?php
- return [
-
- 'app_host' => env('app.host', ''),
-
- 'app_namespace' => '',
-
- 'with_route' => true,
-
- 'default_app' => 'index',
-
- 'default_timezone' => 'Asia/Shanghai',
-
- 'app_map' => [],
-
- 'domain_bind' => [],
-
- 'deny_app_list' => [],
-
- 'exception_tmpl' => env("app_debug", false) ? app()->getThinkPath() . 'tpl/think_exception.tpl' : config_path() . '500.html',
-
- 'error_message' => '页面错误!请稍后再试~',
-
- 'show_error_msg' => env("app_debug", false),
- 'http_exception_template' => [
- 404 => public_path() . '404.html',
- 401 => \think\facade\App::getAppPath() . '401.html',
- ],
- ];
|