Finding the Base URL in CakePHP

If you need the base url in a view, use this:

<?php echo $this->webroot; ?>

If you need the base url in a controller, use this:

Router::url('/', true);