ホームページ >バックエンド開発 >PHPチュートリアル >コハナルーティングに関する問題
Kohana のルーティングの問題
私のルーティングが次のように設定されている場合:
Route::set('sections', '<directory>(/<controller>(/<action>(/<id>)))',<br /> array(<br /> 'directory' => '(admin|affiliate)'<br /> ))<br /> ->defaults(array(<br /> 'controller' => 'index',<br /> 'action' => 'index',<br /> ));