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

前端 未结 24 1886
灰色年华
灰色年华 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:30

    Check your virtual host configuration. For Ubuntu you could find it at /etc/apache2/sites-available/yourlaravel.conf It should be like this:

    
    ServerName yourlaravel.com
    DocumentRoot "/path/to/your/laravel/project/public"
    ServerAlias *.yourlaravel.com
    
    
        AllowOverride All
        Require all granted
    
    

    The key line is Require all granted inside .

    Hope it helps!

提交回复
热议问题