首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

CI中怎么去掉index.php

2013-04-02 
CI中如何去掉index.phpCI中去掉index.phpapache中伪静态的配置Alias /test f:/wwwDirectory f:/wwwO

CI中如何去掉index.php


CI中去掉index.php


apache中伪静态的配置

Alias /test "f:/www"  <Directory "f:/www">      Options Indexes FollowSymLinks    AllowOverride all    Order allow,deny     Allow from all </Directory>  


将CI中配置文件

application/config/config.php中

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

改为$config['index_page'] = "";。

热点排行