echo $this->Html->url(array('controller' => 'bar', 'action' => 'display'));
With an optional second parameter to make it a full URL, including http://etc:
echo $this->Html->url(array('controller' => 'bar', 'action' => 'display'), true);
source
share