1

I have moved my laravel 5.5 files to Ubuntu var/www/html folder

For some reasons I'm getting and internal server error (500).

I have changed permissions of the storage folder but this doesn't work.

  • Laravel 5.5
  • Ubuntu
  • Amazon ec2
thisiskelvin
  • 4,136
  • 1
  • 10
  • 17

1 Answers1

0

Edit this file

/etc/apache2/apache2.conf

 <Directory "/var/www/html">
AllowOverride

Change to

AllowOverride All

Restart Your server

service apache2 restart
arunsakthivel96
  • 186
  • 1
  • 8