0
我有Digital Ocean的服務器。我使用Serverpilot。我如何使用laravel 5.3使用域名路由?Laravel + Digital Ocean + Serverpilot =域路由
Rweb例如:
Route::group(['domain' => 'admin.developer.app'], function() {
Route::get('/', function() { return view('dash') });
});
Route::group(['domain' => 'department.developer.app'], function() {
Route::get('/', function() { return view('dash') });
});
謝謝回答。 DNS記錄; http://prntscr.com/djc6tv .htaccess文件; http://prntscr.com/djc77n –
這兩個看起來不錯,它應該現在工作。在您的VirtualHosts配置中,確保您的Web服務器偵聽所有子域上的請求。之後,重新啓動您的網絡服務器。 –
我檢查了兩次。但它仍然不起作用。 –