는 현재 CodeIgniter의 HMVC 노선
HMVC 응용 프로그램을 HMVC
를 사용하여 CodeIgniter의 응용 프로그램에서 작업하는$route['finance/bill/add'] = 'finance/show_addBill';
$route['finance/transaction/add'] = 'finance/show_addTransaction';
$route['finance/(:any)'] = 'finance/$1';
$route['finance'] = 'finance';
응용 프로그램이 금융 컨트롤러가를 포함하는 자신의 routing.php 있습니다.
http://localhost/finance** it goes to **public function index(){}
http://localhost/finance/transaction/add DOES NOT go to **public function show_addTransaction() {}
http://localhost/finance/addTransaction DOES goes to **public function show_addTransaction() {}
에 갈 때 작동하지 않는 이유는 위의 경로 나는 알아낼 수 없습니다 : S