When using the URL browser to create links, if the current page has parameters in the URL, the url generated by the URL browser will also contain parameters.
For example, the following code is shown on the / controller / action / param / value / page:
<a href="<?php echo $this->url(array( 'controller' => 'index', 'action' => 'index' )) ?>">Dashboard</a>
will output:
<a href="/index/index/param/value/">Dashboard</a>
Can I clear the URL provided by the parameter helper?
zend-framework view-helpers
Andrea Turso
source share