如何使zend框架2高级路由

时间:2013-12-18 16:43:15

标签: php zend-framework zend-framework2 url-routing

我对zendframework 2路由有困难。

我需要在zf2

中制作动态路线

/程序1 / program2等 控制器程序名称是动态名称。有没有办法可以将所有未定义的路由终止到一个控制器/动作?

1 个答案:

答案 0 :(得分:1)

您可以这样做:

'myroute' => array(
   'type' => 'regex',
       'options' => array(
           'regex' => '/(?<name>.*)',
           'spec' => '/%name%',
           'defaults' => array(
               'controller' => 'My\Controller\Index',
               'action' => 'index',
           ),
       ),
       'priority' => -1
    ) 
),