http://localhost/index.php/aa怎么去除中间的index.php
我是一个ci新手 想把http://localhost/index.php/aa中间的index.php的去掉,那位大侠帮帮忙!指点指点、。 本帖最后由 mingsixue 于 2012-3-9 16:08 编辑在index.php同级目录下面建个.htaccess文件
.htaccess内容:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /根目录/$1
在config.php文件中
$config['base_url'] = '你的网站根目录';
$config['index_page'] = ''; //去掉index.php
还有在apache中配置好mod_rewrite
mingsixue 发表于 2012-3-9 16:05 static/image/common/back.gif
在index.php同级目录下面建个.htaccess文件
.htaccess内容:
谢谢。已经解决了。
页:
[1]