|
目录结构如下:
--app
----controllers
--------home.php
--config
--------config.php
----views
--------view_home.php
----style
--------home.css
view_home.php中写着<?=link_tag('app/style/home.css');?>
config.php中写有$config['base_url'] = "http://127.0.0.1/CodeIgniter";
查看原代码显示的路径也是正确的但是就是不能加载.
最后我把config.php中写有$config['base_url'] = "http://127.0.0.1/CodeIgniter";改为空,使用相对路径也是不可以显示!
请教大家这是怎么回事? |
|