您的位置:首页 > 编程语言 > PHP开发

CI去掉index.php

2014-06-19 12:49 148 查看
知识补充:

DOC命令重命名

ren abc.txt .htaccess

1. 开启apache的重写功能;

2.在站点的根目录下新建文件.htaccess

//建议将站点放在www/mysite/index.php这样的目录下:

RewriteEngine on

RewriteCond $1 !^(index\.php|images|robots\.txt)

RewriteRule ^(.*)$ /index.php/$1 [L]


3.修改config.php

$config['index_page'] = "index.php"; 改为

$config['index_page'] = "";

好了

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: