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

thinkphp框架 url 去除index.php

时间:2017-12-17 20:48:06      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:站点   ima   lin   index   ges   body   apache   tee   应用   

1.在apache配置文件 httpd.conf找到mod_rewrite.so ,去除前面的井号

技术分享图片

2.在多站点配置文件中(httpd_vhosts.conf)修改None为All,重启apache

技术分享图片

3.在项目根目录编写.htaccess文件内容为

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

4.在项目应用配置文件中(Application/Common/Conf/config.php)写入

return array(

  ‘URL_MODEL‘=>2  

);

配置完成.........

thinkphp框架 url 去除index.php

标签:站点   ima   lin   index   ges   body   apache   tee   应用   

原文地址:http://www.cnblogs.com/kevinggk/p/8052883.html

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