thinkphp6 多入口文件的应用和隐藏admin/app.phpindex/route.php
1.在public下建2个入口文件,分别是admin.php 代表后台index.php 代表前台2.在route文件下,分别建前后台的路由文件admin/app.php<?phpuse think\facade\Route;Route::get('admin/', 'index/index');Route::get('admin/weclome...