You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
2.2 KiB
48 lines
2.2 KiB
<?php
|
|
|
|
use think\facade\Route;
|
|
|
|
Route::miss(function () {
|
|
$appRequest = request()->pathinfo();
|
|
if ($appRequest === null) {
|
|
$appName = '';
|
|
} else {
|
|
$appRequest = str_replace('//', '/', $appRequest);
|
|
$appName = explode('/', $appRequest)[0] ?? '';
|
|
}
|
|
switch (strtolower($appName)) {
|
|
case config('app.admin_prefix', 'admin'):
|
|
case 'kefu':
|
|
case 'app':
|
|
// return view(app()->getRootPath() . 'public' . DS . config('app.admin_prefix', 'admin') . DS . 'index.html');
|
|
case 'home':
|
|
// if (request()->isMobile()) {
|
|
// return redirect(app()->route->buildUrl('/'));
|
|
// } else {
|
|
// return view(app()->getRootPath() . 'public' . DS . 'home' . DS . 'index.html');
|
|
// }
|
|
case 'pages':
|
|
// return view(app()->getRootPath() . 'public' . DS . 'index.html');
|
|
case 'admin';
|
|
return view(app()->getRootPath() . 'public' . DS . 'admin' . DS . 'index.html');
|
|
// case 'teacherh5';
|
|
// return view(app()->getRootPath() . 'public' . DS . 'teacher' . DS . 'index.html');
|
|
// case 'parenth5';
|
|
// return view(app()->getRootPath() . 'public' . DS . 'parent' . DS . 'index.html');
|
|
default:
|
|
// if (!request()->isMobile()) {
|
|
// if (is_dir(app()->getRootPath() . 'public' . DS . 'home') && !request()->get('mdType')) {
|
|
// return view(app()->getRootPath() . 'public' . DS . 'home' . DS . 'index.html');
|
|
// } else {
|
|
// if (request()->get('type')) {
|
|
// return view(app()->getRootPath() . 'public' . DS . 'index.html');
|
|
// } else {
|
|
// return view(app()->getRootPath() . 'public' . DS . 'admin' . DS . 'index.html');
|
|
// // return view(app()->getRootPath() . 'public' . DS . 'mobile.html', ['siteName' => sys_config('site_name'), 'siteUrl' => sys_config('site_url') . '/pages/index/index']);
|
|
// }
|
|
// }
|
|
// } else {
|
|
// return view(app()->getRootPath() . 'public' . DS . 'index.html');
|
|
// }
|
|
}
|
|
});
|
|
|