Codeigniter: Unable to access the Stylesheets

前端 未结 3 1535
你的背包
你的背包 2021-01-14 19:12

I have the following directory structure of Codeigniter Folder. You can see that I have put all my assets in the assets folder at the root of the application.

3条回答
  •  南笙
    南笙 (楼主)
    2021-01-14 19:26

    Change your base_url to the following:

    echo base_url("assets/css/file-name-here.css");
    

    You want to pass the URL string to the base_url function. This way, you can change $config['base_url'] to whatever you want and it will append the string to that URL properly.

提交回复
热议问题