Hi Reader's,
Welcome to FindNerd, today we are going to discuss how to get the base url in cakephp ?
If you want current base or Get current url.
You can take reference of bellow example
suppose your project URL is http://localhost/project_path
You can use any one method of following :
<?php
echo $this->Html->url('/', true)
echo $this->Html->url('/');
?>
This is a also very important method to find base URL in cakephp
Define constant in Config/core.php as given bellow:
define("BASE_URL", "www.yourprojectsite.com/");
The help of this method you can use BASE_URL anywhere in your project
0 Comment(s)