CodeIgniter框架如何去掉url中的index.php
2015-05-15
展开全部
apache服务器,直接找一个取消index.php的.htaccess文件,放在网站目录下就行
nginx服务器,需要改一下配置文件,
代码如下:
location / { index index.php; if (!-e $request_filename) { rewrite ^/(.*)$ /index.php?$1 last; break; } }
nginx服务器,需要改一下配置文件,
代码如下:
location / { index index.php; if (!-e $request_filename) { rewrite ^/(.*)$ /index.php?$1 last; break; } }
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询