Thinkphp5.1隐藏入口文件

处事URL 样式

http://localhost/tp5/public/index.php/index

1.将 index.php 和  .htacess 文件移出到和Public 文件平级目录;

2.修改 index.php

namespace think;

// 加载基础文件
require __DIR__ . '/thinkphp/base.php';

// 支持事先使用静态方法设置Request对象和Config对象

// 执行应用并响应
Container::get('app')->run()->send();

3.修改 .htaccess 文件


  Options +FollowSymlinks -Multiviews
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]

这是我们最终想要的URL 样式

http://localhost/tp5/index

Thinkphp5.1隐藏入口文件_第1张图片

你可能感兴趣的:(Thinkphp5)