tp6入口文件隐藏
Apache 环境
有效解决方法
/public/.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>
tp6官网提供的隐藏路由入口文件办法:https://www.kancloud.cn/manual/thinkphp6_0/1037488