1.只有默认页能访问 其他页404 同时隐藏index.php
在 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] #隐藏index.php
</IfModule>
2.只有 app/controller 下的能访问 其他模块404
命令行执行:composer require topthink/think-multi-app