Member
trycia.jones
How to get current URL in CakePHP ?
dion.waelchi
In Cakephp 2.x you can get current url in view by using
1
$this->here; or Router::url( $this->here, true );
In Cakephp 3.x you can get current url in view by using
$this->Url->build(null, true);