### 應用配置
*****
文件路徑:config/config.php
配置定義格式,例如:
```
return [
//應用調試模式
'app_debug' => true,
//默認模塊名
'default_module' => 'home',
//默認控制器名
'default_controller' => 'Index',
//默認操作名
'default_action' => 'index',
//生成url模式 默認:false優化模式 true傳統模式
'url_common_param' => false,
//URL偽靜態后綴
'url_html_suffix' => 'html',
//是否開啟路由
'url_route_on' => true,
];
```