Laravel - 如何在单个iis服务器上运行多个laravel应用程序

时间:2017-01-23 10:57:51

标签: php laravel iis

我目前正在使用IIS服务器在laravel上运行一个网站。我想在同一台服务器上同时运行另一个应用程序(网站)。如何在同一台服务器上同时运行多个应用程序?

我正在使用php你能解释我怎样才能在php中实现它

1 个答案:

答案 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.

});`