当我尝试使用默认控制器加载页面时,我的页面无法加载CSS://localhost/mysite/
但是当我尝试加载像//localhost/mysite/index.php/site/index
css
这样的页面时,CSS被完美加载,我必须创建我的css和图像文件夹,如下所示:
路径C:\wamp\www\tt\assets\css
和所有其他应用程序路径位于路径的根路径中
喜欢c:\wamp\www\tt\application
。
请尽快给我解决。
答案 0 :(得分:1)
您应该赋予assets文件夹读/写权限,您应该使用此脚本链接css
<link rel="stylesheet" href="<?php echo base_url('assets/css/style.css');?>">
答案 1 :(得分:1)
在您的tt文件夹中创建.htaccess文件。并将其放置在您的网址中删除index.php:
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
您应该能够直接访问您的文件<?php echo base_url()."tt/assets/css/cssfilename.css" ?>