首页 >社区问答列表 >Laravel 路由添加三级域名出错

Laravel 路由添加三级域名出错

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. 错误

求解!!!