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

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

    Just add a .htaccess file in your root project path with the following code to redirect to the public folder:

    .HTACCESS

    ## Redirect to public folder
    
        RewriteEngine on
        RewriteRule ^$ public/ [L]
        RewriteRule (.*) public/$1 [L]
    
    

    Very simple but work for me in my server.

    Regards!

提交回复
热议问题