Laravel - Forbidden You don't have permission to access / on this server

前端 未结 24 1826
灰色年华
灰色年华 2020-11-30 02:02

My laravel installation was working fine yesterday but today I get the following error:

Forbidden

You don\'t have permission to access / on this server.

Ad         


        
24条回答
  •  攒了一身酷
    2020-11-30 02:33

    In your VirtualHost write the DocumentRoot to point to your Laravel Application in your home directories. In addition you must add the Directory shown below, with your own path:

    
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        Order allow,deny
        allow from all
        Require all granted
    
    

    The second step, you must go to your Laravel Project and run the following command.

    sudo chmod -R 777 storage bootstrap/cache
    

    At the end restart your apache2:

    sudo service apache2 restart
    

提交回复
热议问题