CI 框架怎么去掉隐藏入口文件 index.php
唯我随想no2
2016-12-14
·
TA获得超过185个赞
知道小有建树答主
回答量:243
采纳率:50%
帮助的人:220万
关注
去掉index.php得在当前项目下的.htaccess文件中配置
配置如下:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>
本回答由提问者推荐
收起
为你推荐: