Maison > développement back-end > tutoriel php > laravel子域名无法直接访问

laravel子域名无法直接访问

WBOY
Libérer: 2016-06-06 20:16:06
original
1088 Les gens l'ont consulté

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

<code>return view('home.welcome');</code>
Copier après la connexion
Copier après la connexion

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

<code>Route::get('/', function () {
     return 'hello,world!';
});</code>
Copier après la connexion
Copier après la connexion

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

<code>Route::get('/test', function () {
     return 'hello,world!';
});</code>
Copier après la connexion
Copier après la connexion

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

回复内容:

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

<code>return view('home.welcome');</code>
Copier après la connexion
Copier après la connexion

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

<code>Route::get('/', function () {
     return 'hello,world!';
});</code>
Copier après la connexion
Copier après la connexion

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

<code>Route::get('/test', function () {
     return 'hello,world!';
});</code>
Copier après la connexion
Copier après la connexion

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

Étiquettes associées:
php
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal