Why command “php artisan serve” not working

前端 未结 8 1871
醉梦人生
醉梦人生 2020-12-25 08:15

I started Laravel at this path:

C:\\Users\\Mad\\Work\\trunk\\product\\backend\\v1.2.1\\laravel

but it is not working, it is not starting. <

相关标签:
8条回答
  • 2020-12-25 08:48

    Try the below code

    php -S localhost:8000 -t public
    
    0 讨论(0)
  • 2020-12-25 08:52

    Try this also

    php -S 127.0.0.1:8000 -t public/
    

    https://www.tutsmake.com/laravel-command-php-artisan-serve-not-working-properly/

    0 讨论(0)
提交回复
热议问题