我目前正在使用IIS服务器在laravel上运行一个网站。我想在同一台服务器上同时运行另一个应用程序(网站)。如何在同一台服务器上同时运行多个应用程序?
我正在使用php你能解释我怎样才能在php中实现它
答案 0 :(得分:1)
您可以使用
等域名路由Route::group(['domain' => 'exampledomain.com'], function() {
your routes for this domain here.
});
Route::group(['domain' => 'exampledomain2.com'], function() {
your routes for this domain here.
});`