初始url樣式:http://localhost/tp5/public/index.php/index
1、將 index.php 和 .htacess 文件移出到和Public 文件平級目錄;
2、修改 index.php
namespace think; // 加載基礎(chǔ)文件 require __DIR__ . '/thinkphp/base.php'; // 支持事先使用靜態(tài)方法設(shè)置Request對象和Config對象 // 執(zhí)行應(yīng)用并響應(yīng) Container::get('app')->run()->send();
3、修改 .htaccess 文件
<IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L] </IfModule>
最終url樣式:http://localhost/tp5/index
推薦教程:《TP5》