Zend_Controller_Router_Exception: “xyz” is not specified

后端 未结 6 1589
野趣味
野趣味 2020-12-11 07:23

I have a problem in my current Zend Framework application.

In my Bootstrap I register these routes:

protected function _initRouter()
{
    $this->         


        
6条回答
  •  孤街浪徒
    2020-12-11 08:27

    In this route ":module/:controller/:id" you need simply define default value for :id

    Example:

    
        content/:engine
        
    
    

    Sorry for my English :)

    Regards.

提交回复
热议问题