首页 > 代码库 > PHP CI(CodeIgniter) 如何去掉url中的index.php
PHP CI(CodeIgniter) 如何去掉url中的index.php
1、打开Apache配置文件httpd.conf,找到
1 #LoadModule rewrite_module modules/mod_rewrite.so
去掉前面的#
搜索AllowOverride,将相应Directory下的AllowOverride设置为All
1 AllowOverride All
2、在CI的根目录下,建立.htaccess文件,文件内容如下
1 RewriteEngine On 2 3 RewriteCond %{REQUEST_URI} ^system.* 4 RewriteRule ^(.*)$ /index.php?/$1 [L] 5 6 RewriteCond %{REQUEST_URI} ^application.* 7 RewriteRule ^(.*)$ /index.php?/$1 [L] 8 9 RewriteCond %{REQUEST_FILENAME} !-f 10 RewriteCond %{REQUEST_FILENAME} !-d 11 RewriteRule ^(.*)$ index.php?/$1 [L]
3、打开文件application/config/config.php,$config[‘index_page‘] = "index.php";改为$config[‘index_page‘] = "";
1 $config[‘index_page‘] = "";
4、重启Apache
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。