我有一个laravel应用程序,我通过以下路线进行了扩展:
Route::domain('{account}'.'.app.test')->group(function () {
return '{account}'."-test";
});
我使用的是laragon(沼泽堆栈),因此localhost/myapp
映射了tp app.test
但是如何在浏览器中本地调用随机子域?
例如,如果我尝试致电subdomain.app.test
,则会收到来自telekom(居住在德国)的找不到页面的消息。
如何配置它以使其在本地工作?
答案 0 :(得分:-1)
域语法应为:
Route::domain('{account}.example.com')->group(function() {
Route::get('user/{id}', function($account, $id) {
//code
});
});
请参阅文档https://laravel.com/docs/5.7/routing#route-group-sub-domain-routing