知识补充:
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'] = "";
好了