CI框架去除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. RewriteEngine on
      RewriteCond $1 !^(index\.php|images|robots\.txt)
      RewriteRule ^(.*)$ /index.php/$1 [L]
    若是不在根目錄下:
    1. RewriteEngine on
      RewriteCond $1 !^(index\.php|images|robots\.txt)
      RewriteRule ^(.*)$ /目錄/index.php/$1 [L]
  3. 將CI中配置文件(application/config/config.php)中
    1. $config['index_page'] = "index.php";
    改爲:
    1. $config['index_page'] = "";
  4. 重啓apache,完成。
相關文章
相關標籤/搜索