I\'m new to Slim Framework. How to get the base URL like with the Codeigniter function base_url()?
base_url()
Thanks
The easiest way to get the base url is to append the request url and the request root url like below: $req = $app->request; $base_url = $req->getUrl()."".$req->getRootUri()."/";
$req = $app->request; $base_url = $req->getUrl()."".$req->getRootUri()."/";