diff --git a/app/view/h5/index.html b/app/view/h5/index.html new file mode 100644 index 0000000..5bf0440 --- /dev/null +++ b/app/view/h5/index.html @@ -0,0 +1,39 @@ + + + + + 恭喜,站点创建成功! + + + +
+

恭喜, 站点创建成功 H5!

+

这是默认index.html,本页面由系统自动生成

+ +
+ + \ No newline at end of file diff --git a/config/route.php b/config/route.php index 0ea8822..46f4e83 100644 --- a/config/route.php +++ b/config/route.php @@ -23,6 +23,9 @@ Route::any('/h5/student', function (){ Route::any('/h5/teacher', function (){ return view('teacher/index'); }); +Route::any('/h5', function (){ + return view('h5/index'); +});