码迷,mamicode.com
首页 > Web开发 > 详细

PHP CI(CodeIgniter) 如何去掉url中的index.php

时间:2014-08-19 16:14:14      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   文件   div   log   

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,布布扣,bubuko.com

PHP CI(CodeIgniter) 如何去掉url中的index.php

标签:style   blog   http   color   io   文件   div   log   

原文地址:http://www.cnblogs.com/wyqwclsn/p/3922229.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!