1

I am currently running one website on laravel using IIS server. I want to run another application (website) on same time in same server. How can i run multiple application on same server together ?

I am using php could you please explain how can i do it in php

hardik
  • 55
  • 6

1 Answers1

1

You could use domain routes like

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

your routes for this domain here.

});

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

your routes for this domain here.

});`
Pedro X
  • 849
  • 5
  • 13