When using the Url view helper to build links, if the current page has parameters in the url, the url generated by the Url view helper will contains parameters as well.
For instance in the page /controller/action/param/value/ the following code:
<a href="<?php echo $this->url(array(
'controller' => 'index',
'action' => 'index'
)) ?>">Dashboard</a>
will output:
<a href="/index/index/param/value/">Dashboard</a>
Is it possible to clean the url outputted by the helper of parameters?