ci去掉index.php

按照官网codeigniter.org.cn的配置不成功,解决方法如下:

1.修改config.php
$config['uri_protocol'] = "AUTO"; //或是REQUEST_URI
$config['index_page'] = "";

2.添加.htaccess文件
RewriteEngine on
RewriteRule ^$ /index.php [L]
RewriteCond $1 !^(index\.php|img|css|js|robots\.txt|favicon\.ico)
RewriteRule ^(.*)$ /index.php?/$1 [L]

上一篇: LOAD DATA INFILE为MYSQL减负   下一篇: 卡巴-远程登陆-请确定你的用户名及域无误

提交疑问

请先登录 QQ微博登录

回顶部