How to run Laravel without Artisan?

前端 未结 11 2137
不思量自难忘°
不思量自难忘° 2020-12-05 03:24

I have PHP with Apache2 and I want to run Laravel Framework without Artisan but I can\'t! Does anyone know how to run Laravel without Artisan?

11条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-05 04:13

    I got mine to work by adding the following block to my apache vhost conf file

    
        ServerName myproject
        DocumentRoot "/path/to/myproject/public"
    
    

    and running sudo chown -R daemon storage from my project root

提交回复
热议问题