mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-15 21:32:50 +00:00
34 lines
1.2 KiB
PHP
34 lines
1.2 KiB
PHP
<?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 'admin':
|
|
return view(app()->getRootPath() . 'public' . DS . '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 'kefu':
|
|
return view(app()->getRootPath() . 'public' . DS . 'admin' . DS . 'index.html');
|
|
case 'pages':
|
|
return view(app()->getRootPath() . 'public' .DS . 'index.html');
|
|
default:
|
|
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');
|
|
}
|
|
}
|
|
});
|