How can I access my Laravel app from another PC?

前端 未结 6 1535
情话喂你
情话喂你 2020-12-14 01:14

I\'m trying to access my Laravel app from another PC in the same network using IP address but I can\'t get it to work by accessing 192.168.1.101:8000 in my browser.

6条回答
  •  独厮守ぢ
    2020-12-14 01:49

    Access laravel using your IP address

    php artisan serve --host 0.0.0.0 
    

    Now you can access laravel server by http://laravel-server-ip-address:8000

    If you want to change the port as well then

    php artisan serve --host 0.0.0.0 --port 8101
    

    Now your laravel server is http://laravel-server-ip-address:8101

提交回复
热议问题