解析如何去掉CodeIgniter URL中的index.php
1个回答
2015-08-14 · 知道合伙人软件行家
关注
展开全部
在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即可
location / {
index index.php index.html index.htm;
if (!-e $request_filename) {
#rewrite ^/(.*)$ /index.php?$1 last;
rewrite ^/(.*)$ /index.php?$1 last;
break;
}
}
重启nginx即可
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询