In my view I need to draw full URL. Like this:
http://hostename.com/default/url
When I try to use $this->url(\'default\', array(1,2,3)
$this->url(\'default\', array(1,2,3)
You can use the option force_canonical on the router. All router options go into the third parameter of the url helper:
force_canonical
url($route, $params, $options)
So you can so something like this:
$this->url('myroute', array('id' => 123), array('force_canonical' => true))