CodeIgnite/CI 去掉 index.php的 配置

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


(加载后,我出现过问题!css和js不能正常加载!后来才发现需要定义|js|css)

.htaccess 文件的内容如下:


RewriteEngine on

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


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

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


//CI203为目录,如果ci直接放在根目录。路径就是/index.php/$1 [L]


有朋友对我上面的设置做出了更正。可以参考下。


RewriteEngine on

RewriteBase /ci213new

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

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


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

1、//开启rewrite

LoadModule rewrite_module modules/mod_rewrite.so


2、//开启 .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’;–这个貌似不再起作用了。为空也木事。。。


你可能感兴趣的:(CodeIgnite/CI 去掉 index.php的 配置)