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

 

PHP CI(CodeIgniter) 如何去掉url中的index.php,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。