|
@@ -25,7 +25,10 @@ Route::rule('admin/:any', function () {
|
|
|
Route::rule('pc/:any', function () {
|
|
Route::rule('pc/:any', function () {
|
|
|
return view(app()->getRootPath() . 'public/admin/index.html');
|
|
return view(app()->getRootPath() . 'public/admin/index.html');
|
|
|
})->pattern(['any' => '\w+']);
|
|
})->pattern(['any' => '\w+']);
|
|
|
-
|
|
|
|
|
|
|
+//PC端根路径
|
|
|
|
|
+Route::rule('pc', function () {
|
|
|
|
|
+ return view(app()->getRootPath() . 'public/admin/index.html');
|
|
|
|
|
+});
|
|
|
|
|
|
|
|
// 客服
|
|
// 客服
|
|
|
Route::rule('kefu/:any', function () {
|
|
Route::rule('kefu/:any', function () {
|