Slim Framework Base URL

后端 未结 7 546
太阳男子
太阳男子 2020-12-16 23:34

I\'m new to Slim Framework. How to get the base URL like with the Codeigniter function base_url()?

Thanks

7条回答
  •  情深已故
    2020-12-17 00:06

    You need to set the base url manually FIRST before you can get it as in this:

    $app->hook('slim.before', function () use ($app) {
        $app->view()->appendData(array('baseUrl' => '/base/url/here'));
    });
    

    http://help.slimframework.com/discussions/questions/49-how-to-deal-with-base-path-and-different-routes

提交回复
热议问题