Thinkphp简化地址 重定向 隐藏入口文件

来源:互联网 发布:js this 作用域 编辑:程序博客网 时间:2024/05/16 00:39

  1. 修改 apache 配置文件 (httpd.conf)
查找 并 删除rewrite_module前边的(#);

修改下图 位置 代码(将None 改为All)。

2. 在使用 ThinkPHP 的项目 根目录下,修改 或 新建 (.htaccess)文件
写入下面代码:
<IfModule mod_rewrite.c>
RewriteEngine onRewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
3.在入口文件 index.php(项目根目录下) 中 绑定 Home
define('BIND_MODULE','Home');


完成: 地址就可以 由www.think.com/index.php/Home/think/
简写为:www.think.com/think/
原创粉丝点击