由于我是Codeigniter的新手,因此我的URI格式出现了问题。
我有网址:myweb / admin / 如果我写URL:
myweb/admin/
myweb/admin/index
我的页面效果非常好。
但是当我写这样的时候:
myweb/admin
myweb/admin/index/
我的页面内容很乱,当我打开浏览器控制台时,我收到有关我无法加载resurces(CSS,JS等)的消息 你能告诉我我错过了什么吗?
答案 0 :(得分:0)
在你的.htaccess中有一些像这样的
RewriteCond $1 !^(index\.php|assets)
覆盖重写conf到这个文件夹? (其中assets是一个带有css,jquery,images的文件夹......)
答案 1 :(得分:0)
要包含所有文件(css,img等),您应该使用:
<?php echo base_url('path/to/file.css'); ?>
相对于config.php中定义的base_url(),即使它被移动到另一个文件夹,它也会起作用。