当前位置:首页 > CMS教程 > Thinkphp > 列表

thinkphp 如何去掉index.php

发布:smiling 来源: PHP粉丝网  添加日期:2014-11-20 16:42:19 浏览: 评论:0 

1.打开apache配置文件:

#LoadModule rewrite_module modules/mod_rewrite.so把前面的警号去掉

AllowOverride None 把None改为 All //在APACHE里面去配置 (注意其他地方的AllowOverride也统统设置为ALL)

2、将以下代码另存为名称为.htaccess的文件保存在index.php入口文件平级目录下

  1. RewriteEngine on 
  2. RewriteCond %{REQUEST_FILENAME} !-d 
  3. RewriteCond %{REQUEST_FILENAME} !-f 
  4. RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] 
  5. //开源软件:phpfensi.com 

3、在tp配置文件中开启URL重写模式

'URL_MODEL'=>'2',

4、重启apache

Tags: thinkphp 去掉index php

分享到: