0
나는이 오류가 점점 계속 :Kohana 라우팅 오류
I 조치를 액세스하기 위해 노력하고있어Unable to find a route to match the URI: notifications/send
알림을 보내,하지만 난 액세스 알림을하려고 할 때 잘 작동을 ... 이것은 내 코드
입니다 :
Route::set(
'notifications',
'notifications(<action>)',
array(
'action' => 'index|send'
)
)
->defaults(
array(
'controller' => 'notifications',
'action' => 'index'
)
);