500 server error after installing Laravel

1

I installed Laravel on Mac using Apache and PHP native to MAC. After installing the files from the APACHE folder I went to the browser and typed

  

localhost / laravel / public /

And the following message came

  

Server Error 500

    
asked by anonymous 18.11.2015 / 19:31

2 answers

0

I was able to resolve after so much breaking my head and scouring the internet I followed the step by step of this link and it worked!

  

link

    
19.11.2015 / 15:27
0

One quick fix that worked for me was to put the following line after RewriteEngine On in .htaccess

RewriteBase /

It may work for you too, because most of the time 500 errors are caused by settings related to the .htaccess file.

    
18.11.2015 / 20:19