|
我是CI新手
问题是这样的
我在URL中去掉index.php
.htaccess文件中写
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /CodeIgniter/index.php/$1 [L]
views中的模板文件
<link rel="stylesheet" type="text/css" href="<?php echo base_url();?>system/application/views/css/style.css" />
这个样式显示不出来
假如不去掉url中的index.php就能显示这个样式出来
是什么原因? |
|