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
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
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!
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.