CI去掉index.php

来源:互联网 发布:gis软件好学吗 编辑:程序博客网 时间:2024/05/21 09:47

知识补充:

     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'] = ""; 


好了


0 0
原创粉丝点击