12345678910111213141516171819202122232425 |
- <?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,
- ];
|