Failed to run Laravel 5.4 from public directory in apache virtualhost

0

Good afternoon, I want to visualize a project in Laravel 5.4 using an Apache virtualhost (my virtualhost works ok), but when I try to visualize the contents of the public directory, I have the following problem that I describe in the image, your comments please:

    
asked by Ricky 26.04.2017 в 20:07
source

1 answer

1

The problem is that Laravel uses several libraries that are not installed by default in Apache.

To install the libraries you can execute the following command:

apt-get install php libapache2-mod-php php-mcrypt
    
answered by 27.04.2017 / 01:09
source