How to get the base Url in cakephp?

后端 未结 5 1329
遇见更好的自我
遇见更好的自我 2021-01-02 02:13

I\'m using Html Helper css() method to link my stylesheets just like this: Html->css(\'reset.css\');?> but what if my

5条回答
  •  青春惊慌失措
    2021-01-02 02:25

    There are a few different ways to get the base path. I use

    echo $this->webroot; //Note: auto appends trailing slash
    

提交回复
热议问题