official_website/config/app.php

40 lines
1.2 KiB
PHP
Raw Normal View History

2024-11-29 14:05:52 +08:00
<?php
// +----------------------------------------------------------------------
// | 应用设置
// +----------------------------------------------------------------------
2024-12-02 13:57:08 +08:00
$adminPath = config('adminconfig.admin_path');//默认admin
2024-11-29 14:05:52 +08:00
return [
// 应用地址
'app_host' => env('app.host', ''),
// 应用的命名空间
'app_namespace' => '',
// 是否启用路由
'with_route' => true,
2024-12-02 13:57:08 +08:00
// 是否启用事件
'with_event' => true,
2024-11-29 14:05:52 +08:00
// 默认应用
2024-12-02 13:57:08 +08:00
'default_app' => 'home',
2024-11-29 14:05:52 +08:00
// 默认时区
'default_timezone' => 'Asia/Shanghai',
// 应用映射(自动多应用模式有效)
2024-12-02 13:57:08 +08:00
'app_map' => [
$adminPath =>'admin'
],
2024-11-29 14:05:52 +08:00
// 域名绑定(自动多应用模式有效)
2024-12-02 13:57:08 +08:00
'domain_bind' => [
],
2024-11-29 14:05:52 +08:00
// 禁止URL访问的应用列表自动多应用模式有效
'deny_app_list' => [],
// 异常页面的模板文件
'exception_tmpl' => app()->getThinkPath() . 'tpl/think_exception.tpl',
2024-12-02 13:57:08 +08:00
'dispatch_success_tmpl' => app()->getThinkPath() . 'tpl/dispatch_jump.tpl',
2024-11-29 14:05:52 +08:00
// 错误显示信息,非调试模式有效
'error_message' => '页面错误!请稍后再试~',
// 显示错误信息
2024-12-02 13:57:08 +08:00
'show_error_msg' => true,
2024-11-29 14:05:52 +08:00
];