CodeIgnite/CI 去掉 index.php的 配置

A. .htaccess文件必須放在CI的根目錄下和index.php文件在同一目錄。php


(加載後,我出現過問題!css和js不能正常加載!後來才發現須要定義|js|css)css

.htaccess 文件的內容以下:apache


RewriteEngine onapp

#RewriteCond $1 !^(index\.php|images|robots\.txt)ide


RewriteCond $1 !^(index\.php|images|js|css|robots\.txt)spa

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


//CI203爲目錄,若是ci直接放在根目錄。路徑就是/index.php/$1 [L]it


有朋友對我上面的設置作出了更正。能夠參考下。io


RewriteEngine onmodule

RewriteBase /ci213new

RewriteCond $1 !^(index\.php|images|js|css|robots\.txt)

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


B.在apache配置上,注意httpd.conf文件裏:

一、//開啓rewrite

LoadModule rewrite_module modules/mod_rewrite.so


二、//開啓 .htaccess

Options FollowSymLinks

AllowOverride All

Order allow,deny

Allow from all


另外,注意幾個文件:


application\config\routes.php—這個文件設置初始加載的默認控制器文件(controller)


application\config\config.php—這個文件設置初始配置,可是,自打我去掉index.php後,$config['index_page'] = ‘index.php’;–這個貌似再也不起做用了。爲空也木事。。。

相關文章
相關標籤/搜索