|
.htaccess文件
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
index控制器:
class Index extends controller
{
function index()
{
parent::Controller();
}
function _remap($method)
{
$header['css'] = '<link rel="stylesheet" href="/css/css_index.css" type="text/css" />';
$data['header'] = $this->load->view('header', $header,True);
$this->load->view('template_index',$data);
}
}
一切都正常就是显示的时候http://127.0.0.1/css/css_index.css 的css没被加载上 FF看了下报404错误,未找到文件,
大家麻烦帮看下怎么解决,使用index控制器是因为我想让主站可以更好的被搜索引擎收录,www.xx.com/index.html这样也可以正常访问 |
|