return [
// 是否開啟路由
'url_route_on'=> true,
// 是否強制使用路線
'url_route_must URL=> false,
/ 參數方式0 依名稱成對解析1 依序解析
'url_param_type'=> 1,
];
#think\Route::get( 'test/:name/:age','index/index/test',[],[
'name'=>'[a-zA-Z] ',
'age'=> '\d{2}'
]);