码迷,mamicode.com
首页 > Web开发 > 详细

TP中如何去掉index.php

时间:2017-04-27 15:37:25      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:model   htaccess   file   数组   filename   class   conf   rri   write   

使用过TP的同学都知道,在URL始终会有index .php  我们如何才能够去掉呢?
1. 确认httpd.conf配置文件中加载了mod_rewrite.so模块
2. AllowOverride None 将None改为 All;允许读取.htaccess文件
3. 打开Myapp/Conf/config.php文件,在配置的数组中添加一行:
‘URL_MODEL‘=>2,
4. 在入口文件所在的同级目录下,新建一个.htaccess文件,内容是: 


<IfModule mod_rewrite.c>  
RewriteEngine on  
RewriteCond %{REQUEST_FILENAME} !-d  
RewriteCond %{REQUEST_FILENAME} !-f  
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]  
</IfModule> 

  

 

TP中如何去掉index.php

标签:model   htaccess   file   数组   filename   class   conf   rri   write   

原文地址:http://www.cnblogs.com/jinxiblog/p/6774197.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!