mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-08-30 12:45:32 +08:00
增加controller_auto_search配置参数用于设置URL解析支持自动搜索控制器 改进Route类的parseRoute方法
This commit is contained in:
@@ -339,8 +339,8 @@ class App
|
||||
}
|
||||
}
|
||||
if (false === $result) {
|
||||
// 路由无效默认分析为模块/控制器/操作/参数...方式URL
|
||||
$result = Route::parseUrl($path, $depr);
|
||||
// 路由无效 解析模块/控制器/操作/参数... 支持控制器自动搜索
|
||||
$result = Route::parseUrl($path, $depr, $config['controller_auto_search']);
|
||||
}
|
||||
//保证$_REQUEST正常取值
|
||||
$_REQUEST = array_merge($_POST, $_GET, $_COOKIE);
|
||||
|
||||
Reference in New Issue
Block a user