我使用Zend框架和URL视图助手来创建URL
$this->url(array('controller' => 'index', 'action' => 'index'))
$this->url(array('controller' => 'who', 'action' => 'view', 'id' => $row->who_id));
$this->url(array('controller' => 'projects', 'action' => 'view', 'id' => $row->mai_id));
$this->url(array('controller' => 'content', 'action' => 'view', 'type' => 'theater', 'id' => $row->the_id));
$this->url(array('controller' => 'shows', 'action' => 'view'));
这样,一开始,我有这样的网址
http://ccgss.local/information/location
http://ccgss.local/who/view/id/1
http://ccgss.local/content/view/id/1/type/theater
它扰乱了仍然存在的参数:
http://ccgss.local/who/view/id/1/type/theater
我该怎么解决?