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

问题描述:

我目前使用IIS服务器在laravel上运行一个网站。我想在同一台服务器上同时运行另一个应用程序(网站)。我怎样才能在同一台服务器上运行多个应用程序?Laravel - 如何在单个iis服务器上运行多个laravel应用程序

我使用PHP你能解释一下我怎么能做到这一点在PHP

+2

在IIS中创建多个站点。 – Styphon

+3

[在IIS中从一个IP运行多个站点]的可能重复(http://*.com/questions/13489768/run-multiple-sites-from-one-ip-in-iis) – Styphon

你可以使用域的路由像

Route::group(['domain' => 'exampledomain.com'], function() { 

your routes for this domain here. 

}); 

Route::group(['domain' => 'exampledomain2.com'], function() { 

your routes for this domain here. 

});`