ci如何去掉index.php(nginx)
程序员文章站
2022-03-09 22:31:09
...
nginx下ci去掉“index.php”的方法:首先在根目录下新增“.htaccess”文件;然后修改“nginx.conf”配置文件内容为“ rewrite ^/(.*)$ /index.php/$1;”;最后保存修改即可。
推荐:《PHP视频教程》
CI框架去除index.php(Nginx)
在根目录新增.htaccess文件
<IfModule authz_core_module> Require all denied </IfModule> <IfModule !authz_core_module> Deny from all </IfModule>
修改nginx.conf(如果有vhost.conf文件,则修改此文件)配置文件
location / { index index.html index.htm index.php; #autoindex on; if (!-e $request_filename) { rewrite ^/(.*)$ /index.php/$1; } }
以上就是ci如何去掉index.php(nginx)的详细内容,更多请关注其它相关文章!
推荐阅读
-
继续,如何URL重写去掉index.php?不是想象中的那么容易啊
-
教你如何在CI框架中使用 .htaccess 隐藏url中index.php
-
教你如何在CI框架中使用 .htaccess 隐藏url中index.php
-
解析如何去掉CodeIgniter URL中的index.php
-
CI框架如何删除地址栏的 index.php
-
教你如何在CI框架中使用 .htaccess 隐藏url中index.php
-
CI去掉URL中的INDEX.PHP
-
CI去掉URL中的INDEX.PHP
-
nginx+apache跑CI框架,url重写规则如何写
-
zend frame 在iis上如何去掉index.php