Frage

I keep getting this error:

Unable to find a route to match the URI: notifications/send

When I'm trying to access action send in notifications, but when I try access notifications it works fine..

This is my code:

Route::set(
    'notifications', 
    'notifications(<action>)',
    array(
        'action' => 'index|send'
    )
)
->defaults(
    array(
        'controller' => 'notifications', 
        'action' => 'index'
    )
);
War es hilfreich?

Lösung

You are missing a /.

notifications(<action>) should be notifications(/<action>)

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top