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

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

    Have you tried to change the .htaccess file that laravel suggested if the default one doesn't work? I had this similar problem and changed it to

    Options +FollowSymLinks
    RewriteEngine On
    
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
    

    and it soleved :)

提交回复
热议问题