欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

CodeIgniter如何去掉Index.php

CI默认的rewrite url中是必须加上一个index.php,这样看起来URL不是很美观,下面我就给大家分享一下如何去掉CodeIgniter中的index.php

工具/原料

 
  • CodeIgniter

方法/步骤

 
  1. 打开你的WEB服务器的httpd.conf文件,以本地的XAMPP环境为例,点击面板上的“config”,然后选择“Apache(httpd.conf)”

    CodeIgniter如何去掉Index.php
  2. 找到LoadModule rewrite_module modules/mod_rewrite.so这行,把该行前的#去掉。保存该文件

    CodeIgniter如何去掉Index.php
  3. 进入到CI根目录,新建.htaccess文件,输入

    RewriteEngine on 

    RewriteCond $1 !^(index\.php|style|robots\.txt) 

    RewriteRule ^(.*)$ /index.php/$1 [L]

    当然如果你的目录不是根目录,则要注意,比如我的URL为http://localhost/ci,则最后一行要改为RewriteRule ^(.*)$ /ci/index.php/$1 [L]

    CodeIgniter如何去掉Index.php
  4. 保存.htaccess可以使用另存为的方式,然后文件类型选择“All Files”即可保存

    CodeIgniter如何去掉Index.php
  5. 最后到CI目录下的config文件夹下,在config.php文件中,将$config['index_page'] = "index.php"; 修改为 $config['index_page'] = ""; 最后重启Apache 服务器,再次访问,就不需要输入index.php了。

    CodeIgniter如何去掉Index.php
    END
 
经验内容仅供参考,如果您需解决具体问题(尤其法律、医学等领域),建议您详细咨询相关领域专业人士。
举报作者声明:本篇经验系本人依照真实经历原创,未经许可,谢绝转载。

来自 http://jingyan.baidu.com/article/2fb0ba4054cd5900f3ec5f52.html




PHP CodeIgniter(CI)去掉 index.php

 

去掉CodeIgniter(CI)默认url中的index.php的步骤:

1.打开apache的配置文件,conf/httpd.conf :

1
LoadModule rewrite_module modules/mod_rewrite.so

把该行前的#去掉。

搜索 AllowOverride None(配置文件中有多处),看注释信息,将相关.htaccess的该行信息改为:

1
AllowOverride All

2.在CI的根目录下,即在index.php,system的同级目录下,建立.htaccess,直接建立该文件名的不会成功,可以先建立记事本文件,另存为该名的文件即可。内容如下(CI手册上也有介绍):

1
2
3
4
5
RewriteEngine on
 
RewriteCond $1 !^(index\.php|images|robots\.txt) 
 
RewriteRule ^(.*)$ /index.php/$1 [L]

如果文件不是在www的根目录下,例如我的是:

1
http://localhost/ci_demo_1/index.php/

第三行需要改写为

1
RewriteRule ^(.*)$ /CI/index.php/$1 [L]

另外,我的index.php的同级目录下还有assets文件夹,这些需要过滤除去,第二行需要改写为:

1
RewriteCond $1 !^(index\.php|images|<span style="text-decoration: underline;">assets</span>|robots\.txt

3.将CI中配置文件(application/config/config.php)中

1
$config['index_page'] = "index.php";

改成

1
$config['index_page'] = "";

重启apache,完成。

=========================================================================================================================

php 框架ci去index.php的方法


网上有很多方法都要引入.htaccess文件,如果是在测试环境下,动态和静态的文件放到一块,可能测试会有一定的问题(由于全部定向到index.php),静态网页访问不了。

这里提供一种方法,只需要修改http.conf文件,

步骤:

1 :在配置虚拟目录下加入 

1
2
3
4
5
6
7
8
9
10
11
<Directory />
     Options Indexes FollowSymLinks
     AllowOverride all
     Order allow,deny
     Allow from all
   </Directory>
   <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule ^/script/(.*) /script/$1 [L]
    RewriteRule ^(.*)$ /index.php?/$1 [L]
   </IfModule>

2 将下面这行前面的;去掉

1
LoadModule rewrite_module modules/mod_rewrite.so

3 重启apache就可以了,无需加入.htaccess文件


来自 http://www.cnblogs.com/langjun/p/3543482.html


普通分类: