Can't make Laravel 4 to work on localhost

前端 未结 14 1963
梦毁少年i
梦毁少年i 2020-12-01 05:18

I\'m trying Laravel for the first time after reading an announcement of the Laravel4 beta releasing.

I followed these steps I installed composer and laravel with all

14条回答
  •  伪装坚强ぢ
    2020-12-01 05:44

    I had the same problem, here is how I solve it: In your httpd-vhosts.conf files you need to add the configurations to your folders, this is what I have in mine

    
        ServerAdmin your@mail.com
        DocumentRoot "/home/carlospublic_html"
        ServerName carlos.local
        
            Options Indexes FollowSymLinks MultiViews
            AllowOverride All
            Order allow,deny
            allow from all
        
    >
    

提交回复
热议问题