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

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

    For me this was simply calling route() on a named route that I had not created/created incorrectly. This caused the Forbidden error page.

    Restarting the web server allowed proper Whoops! error to display:

    Route [my-route-name] not defined.

    Fixing the route name ->name('my-route-name') fixed the error.

    This is on Laravel 5.5 & using wampserver.

提交回复
热议问题