Kohana 3 Routing and Query Strings
问题 If I have a route like this: Route::set('test', 'test') ->defaults(array( 'controller' => 'test', 'action' => 'index' )); I assumed that only the url mysite.com/test or mysite.com/test/ would be sent to this route and anything else would be sent to the default route, or a catch all route if you have one. However, you can tack on any query strings and it will still be valid. For example any of these would work: mysite.com/test/?abc mysite.com/test/?abc=123 mysite.com/test/?abc=123&blabla=lala