1

当我尝试使用默认控制器加载页面时,我的页面无法加载 CSS,如下所示://localhost/mysite/

但是,当我尝试像这样加载页面时//localhost/mysite/index.php/site/index css,CSS 已完美加载,我必须像这样创建我的 css 和图像文件夹:

路径C:\wamp\www\tt\assets\css和所有其他应用程序路径都在 tt 的根路径中c:\wamp\www\tt\application

请尽快给我解决方案。

4

2 回答 2

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" ?>

于 2013-01-24T11:07:42.990 回答
1

您应该授予资产文件夹的读/写权限,并且您应该使用此脚本来链接 css

<link rel="stylesheet" href="<?php echo base_url('assets/css/style.css');?>">
于 2013-01-24T11:04:10.027 回答