How to run multiple Laravel projects at same time?

后端 未结 3 1055

To run one laravel project we only need to type \"php artisan serve\". and it will be available on port 8000.

But sometimes we need to run multiple projects at the same

3条回答
  •  自闭症患者
    2021-02-08 04:46

    You can also run web server on multiple port in PHP application by the following command.

    php -S localhost:8000 
    php -S localhost:8080
    

提交回复
热议问题