Ben URL'ler oluşturmak için Zend Framework ve URL Görünüm Yardımcısı kullanıyorum
Ben navigasyon bu gibi bazı çizgiler var:
$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'));
Bu şekilde, ilk başta, bu gibi bazı URL var
http://ccgss.local/information/location
http://ccgss.local/who/view/id/1
But when I access another link with more parameters like http://ccgss.local/content/view/id/1/type/theater
it messes up with the parameters that still were there: http://ccgss.local/who/view/id/1/type/theater
Ben başka bir sayfaya eriştiğinizde parametreleri temizlemek yok, demek.
Bunu nasıl düzeltebilirim?