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

[讨论/交流] http://localhost/index.php/aa怎么去除中间的index.php

[复制链接]
发表于 2012-3-9 15:55:57 | 显示全部楼层 |阅读模式
我是一个ci新手 想把http://localhost/index.php/aa中间的index.php的去掉,那位大侠帮帮忙!指点指点、。
发表于 2012-3-9 16:05:11 | 显示全部楼层
本帖最后由 mingsixue 于 2012-3-9 16:08 编辑

在index.php同级目录下面建个.htaccess文件
.htaccess内容:
  1. RewriteEngine on
  2. RewriteCond $1 !^(index\.php|images|robots\.txt)
  3. RewriteRule ^(.*)$ /根目录/$1 [L]
复制代码


在config.php文件中
PHP复制代码
 
$config['base_url'] = '你的网站根目录';
 
$config['index_page'] = ''; //去掉index.php
 
复制代码


还有在apache中配置好mod_rewrite
 楼主| 发表于 2012-3-9 16:19:38 | 显示全部楼层
mingsixue 发表于 2012-3-9 16:05
在index.php同级目录下面建个.htaccess文件
.htaccess内容:

谢谢。已经解决了。

本版积分规则