用户
 找回密码
 入住 CI 中国社区
搜索
查看: 3853|回复: 8
收起左侧

[已解决] css样式不起作用问题

[复制链接]
发表于 2010-4-29 17:24:33 | 显示全部楼层 |阅读模式
function index()
  {
      $this->load->view("index");
  }

我在控制器上是这样调用的

页面上css样式不起作用了

<link href="images/style.css" type="text/css" rel="stylesheet" />

路径正确的。。。 为什么没用。
 楼主| 发表于 2010-4-29 17:31:54 | 显示全部楼层
RewriteEngine on   
RewriteCond $1 !^(index\.php|images|robots\.txt|css)   
RewriteRule ^(.*)$ /ci/index.php/$1 [L]

隐藏index.php
这样配置算不算css也不读?
发表于 2010-4-29 17:50:33 | 显示全部楼层
写完整css的url
发表于 2010-4-29 19:26:05 | 显示全部楼层
应该是CSS路径的问题.
<?php echo base_url().'images/style.css';?>
 楼主| 发表于 2010-4-30 08:50:42 | 显示全部楼层
<?php echo base_url().'images/style.css';?>

没用啊

http://localhost/ci/images/style.css 显示这个路径
 楼主| 发表于 2010-4-30 08:55:16 | 显示全部楼层
搞定了。自己SB了。。。。。。
感谢楼上2位
发表于 2010-4-30 12:06:18 | 显示全部楼层
楼主,能不能分享一下如何弄好的?
 楼主| 发表于 2010-4-30 13:07:17 | 显示全部楼层
<link href="images/style.css" type="text/css" rel="stylesheet" />
改成这样
<link href="<?php echo base_url().'images/style.css';?>" type="text/css" rel="stylesheet" />
我吧css文件放在相应位置就好了
发表于 2010-5-3 20:04:45 | 显示全部楼层
这个问题想了好久了,没想到。

本版积分规则