zhanglinxin 1 年間 前
コミット
55ebd98440
1 ファイル変更2 行追加1 行削除
  1. 2 1
      route/route.php

+ 2 - 1
route/route.php

@@ -27,7 +27,8 @@ Route::miss(function () {
             if (!request()->isMobile() && is_dir(app()->getRootPath() . 'public' . DS . 'home') && !request()->get('type')) {
                 return view(app()->getRootPath() . 'public' . DS . 'home' . DS . 'index.html');
             } else {
-                return view(app()->getRootPath() . 'public' . DS . 'index.html');
+                return view(app()->getRootPath() . 'public' . DS . 'home' . DS . 'index.html');
+//                return view(app()->getRootPath() . 'public' . DS . 'index.html');
             }
     }
 });