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

2
  • 2
    Create multiple sites in IIS. Commented Jan 23, 2017 at 10:59
  • 3
    Possible duplicate of Run multiple sites from one IP in IIS Commented Jan 23, 2017 at 10:59

1 Answer 1

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.

});`
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.