* @copyright walkor * @link http://www.workerman.net/ * @license http://www.opensource.org/licenses/mit-license.php MIT License */ use Webman\Route; // 默认路由 Route::any('/', [\plugin\admin\app\controller\IndexController::class, 'index']); Route::any('/h5/student', function (){ return view('student/index'); }); Route::any('/h5/teacher', function (){ return view('teacher/index'); });