【发布时间】:2017-01-23 10:57:50
【问题描述】:
我目前正在使用 IIS 服务器在 laravel 上运行一个网站。我想在同一台服务器上同时运行另一个应用程序(网站)。如何在同一台服务器上同时运行多个应用程序?
我正在使用php,请你解释一下我如何在php中做到这一点
【问题讨论】:
-
在 IIS 中创建多个站点。
我目前正在使用 IIS 服务器在 laravel 上运行一个网站。我想在同一台服务器上同时运行另一个应用程序(网站)。如何在同一台服务器上同时运行多个应用程序?
我正在使用php,请你解释一下我如何在php中做到这一点
【问题讨论】:
您可以使用类似的域路由
Route::group(['domain' => 'exampledomain.com'], function() {
your routes for this domain here.
});
Route::group(['domain' => 'exampledomain2.com'], function() {
your routes for this domain here.
});`
【讨论】: