Route::group(['domain' => 'x.m.abc.com'], function () {
Route::get('/',function(){return "welcome";});
});
浏览 x.m.abc.com 显示 Sorry, the page you are looking for could not be found. 错误
求解!!!
Route::group(['domain' => 'x.m.abc.com'], function () {
Route::get('/',function(){return "welcome";});
});
浏览 x.m.abc.com 显示 Sorry, the page you are looking for could not be found. 错误
求解!!!
在Laravel5.3上测试是没问题的,你host配置没错吧。