ZendFrameworkとURLViewHelperを使用して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'));
このように、最初は、このようなURLがあります
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
つまり、別のページにアクセスしてもパラメータがクリーンアップされません。
これを修正するにはどうすればよいですか?