路由重复 模块不存在
Posted wen-zi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了路由重复 模块不存在相关的知识,希望对你有一定的参考价值。
报错
估计是里面路由一样 由于赶项目 临时处理办法如下
Route::get(‘about/‘, ‘Index/about‘);//关于吉谷 Route::get(‘news/:nc_id‘, ‘News/index‘, [],[‘nc_id‘ => ‘d+‘]); Route::get(‘newsDetail/:id‘, ‘News/detail‘,[‘ext‘=>‘html‘], [‘id‘ => ‘d+‘]); Route::get(‘product/‘, ‘Product/index‘); Route::get(‘join/:type‘, ‘Index/join‘, [],[‘type‘ => ‘d+‘]);// 1 诚聘英才 2 联系我们 Route::get(‘join/‘, ‘Index/join‘);// 1 诚聘英才 2 联系我们
解决办法 加个 判断 是否是pc 还是手机端
strpos(strtolower(($_SERVER[‘HTTP_HOST‘])),$MobDomain)
$WebDomain = "www.dome.com";//pc端 $MobDomain = "m.dome.com";//手机端 Route::domain($WebDomain,‘index‘); Route::domain($MobDomain,‘mobile‘); //访问的是pc 还是手机端 解决 报错:模块不存在:mobile if(strpos(strtolower(($_SERVER[‘HTTP_HOST‘])),$MobDomain) !== false){ Route::group([‘prefix‘ => ‘mobile/‘], function () { // Route::get(‘/‘, ‘Index/index‘); Route::get(‘about/‘, ‘Index/about‘);//关于吉谷 Route::get(‘news/:nc_id‘, ‘News/index‘, [],[‘nc_id‘ => ‘d+‘]); Route::get(‘newsDetail/:id‘, ‘News/detail‘,[‘ext‘=>‘html‘], [‘id‘ => ‘d+‘]); Route::get(‘product/‘, ‘Product/index‘); Route::get(‘join/:type‘, ‘Index/join‘, [],[‘type‘ => ‘d+‘]);// 1 诚聘英才 2 联系我们 Route::get(‘join/‘, ‘Index/join‘);// 1 诚聘英才 2 联系我们 },[‘domain‘ => $MobDomain]); }else{ Route::group([‘prefix‘ => ‘index/‘], function () { // Route::get(‘/‘, ‘Index/index‘); Route::get(‘about/‘, ‘Index/about‘);//关于吉谷 Route::get(‘news/:nc_id‘, ‘News/index‘, [],[‘nc_id‘ => ‘d+‘]); Route::get(‘newsDetail/:id‘, ‘News/detail‘,[‘ext‘=>‘html‘], [‘id‘ => ‘d+‘]); Route::get(‘product/‘, ‘Product/index‘); Route::get(‘join/:type‘, ‘Index/join‘, [],[‘type‘ => ‘d+‘]);// 1 诚聘英才 2 联系我们 Route::get(‘join/‘, ‘Index/join‘);// 1 诚聘英才 2 联系我们 },[‘domain‘ => $WebDomain]); }
以上是关于路由重复 模块不存在的主要内容,如果未能解决你的问题,请参考以下文章
如何使用模块化代码片段中的LeakCanary检测内存泄漏?
Express实战 - 应用案例- realworld-API - 路由设计 - mongoose - 数据验证 - 密码加密 - 登录接口 - 身份认证 - token - 增删改查API(代码片段
spark关于join后有重复列的问题(org.apache.spark.sql.AnalysisException: Reference '*' is ambiguous)(代码片段