我正在使用 Zend Framework 和 URL View Helper 创建 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
我的意思是,当我访问另一个页面时,参数不会清理。
我该如何解决?