2012-12-26 3 views
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' 
    ) 
); 

답변

1

/가 누락되었습니다.

notifications(<action>)notifications(/<action>)

이어야합니다.