return [
// 라우팅 활성화 여부
'url_route_on'=> true,
// 라우팅 강제 사용 여부
'url_route_must'=> false,
// URL 매개변수 모드 0 이름으로 쌍으로 구문 분석 1 순서대로 파싱
'url_param_type'=> 1,
];
thinkRoute::get('test/:name/:age','index/index/test',[],[
' 이름'=> ;'[a-zA-Z]+',
'나이'=>'d{2}'
]);