欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

laravel子域名无法直接访问

程序员文章站 2022-05-03 18:20:41
...
Route::get('/', function () {
return view('home.welcome');

});
Route::group(['domain' => 'dashboard.homestead.app'], function () {

Route::get('/', function () {
     return 'hello,world!';
});

});
已经在homestead和hosts里配置了dashboard.homestead.app。但是当访问dashboard.homestead.app显示的仍然是上面路由的的内容(home.welcome).
但是如果写成这样
Route::group(['domain' => 'dashboard.homestead.app'], function () {

Route::get('/test', function () {
     return 'hello,world!';
});

});
访问dashboard.homestead.app/test是正常显示的hello world.
这是为什么?不能直接访问dashboard.homestead.app得到hello world吗?

回复内容:

Route::get('/', function () {

return view('home.welcome');

});
Route::group(['domain' => 'dashboard.homestead.app'], function () {

Route::get('/', function () {
     return 'hello,world!';
});

});
已经在homestead和hosts里配置了dashboard.homestead.app。但是当访问dashboard.homestead.app显示的仍然是上面路由的的内容(home.welcome).
但是如果写成这样
Route::group(['domain' => 'dashboard.homestead.app'], function () {

Route::get('/test', function () {
     return 'hello,world!';
});

});
访问dashboard.homestead.app/test是正常显示的hello world.
这是为什么?不能直接访问dashboard.homestead.app得到hello world吗?

相关标签: php laravel5