CodeIgniter框架如何去掉url中的index.php
2015-11-22
展开全部
nginx服务
在nginx的配置文件中添加或修改
location / {
index index.php index.html index.htm;
if (!-e $request_filename) {
#rewrite ^/(.*)$ /index.php?$1 last;
rewrite ^/(.*)$ /index.php?$1 last;
break;
}
}
重启nginx即可apache服务
新建.htaccess文件内容如下,然后放在网站主目录下
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
更多细节,百度一大堆
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询