thinkphp框架 url 去除index.php

Posted kevin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp框架 url 去除index.php相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

框架选择的原因及其说明

thinkphp隐藏index.php/home,并允许访问其他模块

ThinkPHP 重写模式去除index.php 浏览器显示Not Found 找不到啊。求解

Thinkphp5结合layer弹窗 定制操作结果页面

ThinkPHP框架系统源码解析——URL路由解析

使Nginx支持ThinkPHP框架