mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-15 21:32:50 +00:00
26 lines
1.0 KiB
PHP
26 lines
1.0 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: liu21st <liu21st@gmail.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
// +----------------------------------------------------------------------
|
|
// | 应用设置
|
|
// +----------------------------------------------------------------------
|
|
|
|
return [
|
|
// 是否强制使用路由
|
|
'url_route_must' => true,
|
|
// 合并路由规则
|
|
'route_rule_merge' => true,
|
|
// 路由是否完全匹配
|
|
'route_complete_match' => true,
|
|
// 是否自动转换URL中的控制器和操作名
|
|
'url_convert' => false,
|
|
];
|