我在zend中有大量带有各种参数的路由。如果网址有 1. 无效参数 2. 未知参数,我需要抛出 404
例如,我有以下网址
http://www.example.com/something/1
有路线
'client' => array(
'type' => 'Zend_Controller_Router_Route',
'route' => '/:alias/:page',
'defaults' => array('module' => 'client', 'controller' => 'index', 'action' => 'details', 'alias' => false, 'page' => 1),
),
当请求 url 未知时,我需要抛出 404 - 额外的东西,比如
http://www.example.com/something/1/whatever/can/be/added
有没有一些方便的方法来实现这一点?