CodeIgniter去掉url中的index.php_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > CodeIgniter去掉url中的index.php

CodeIgniter去掉url中的index.php

 2010/9/19 23:34:11  chengxianju  http://4nail.javaeye.com  我要评论(0)
  • 摘要:CI默认中url中带index.php,比如http://localhost/index.php/blog/comment/1.html去掉这个index.php步骤:1.打开apache的配置文件,conf/httpd.conf:LoadModulerewrite_modulemodules/mod_rewrite.so,把该行前的#去掉。搜索AllowOverrideNone(配置文件中有多处),看注释信息,将相关.htaccess的该行信息改为AllowOverrideAll。2
  • 标签:CodeIgniter去掉url

CI默认中url中带index.php,比如http://localhost/index.php/blog/comment/1.html

去掉这个index.php步骤:

?

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

LoadModule rewrite_module modules/mod_rewrite.so,把该行前的#去掉。

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

?

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

RewriteEngine on ??

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

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

就可以去掉 index.php 了。要注意 /index.php/$1 要根据你目录(Web 目录,比如 http://www.domain.com/index.php)的实际情况来定,比如网站根目录是 /ci/index.php 则要写成 /ci/index.php/$1

RewriteCond $1 !^(index\.php|images|robots\.txt)
发表评论
用户名: 匿名