return [
// 是否开启路由
'url_route_on'=> true,
// 是否强制使用路由
'url_route_must'=> false,
// URL参数方式 0 按名称成对解析 1 按顺序解析
'url_param_type'=> 1,
];
think\Route::get('test/:name/:age','index/index/test',[],[
'name'=>'[a-zA-Z]+',
'age'=>'\d{2}'
]);