Apache:
1、public下的index.php入口文件和.htaccess配置文件移到TP5主目录下
2、修改index.php文件
https://www.kancloud.cn/manual/thinkphp5/125729
3、修改.htaccess文件
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfModule>
效果图: