From 21a53abd935ddd95858abe6b457b60672d42c7b7 Mon Sep 17 00:00:00 2001 From: Dai Date: Tue, 23 Jul 2024 21:38:28 +0800 Subject: [PATCH] h5 --- app/view/h5/index.html | 39 +++++++++++++++++++++++++++++++++++++++ config/route.php | 3 +++ 2 files changed, 42 insertions(+) create mode 100644 app/view/h5/index.html 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'); +});