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
Just add a .htaccess file in your root project path with the following code to redirect to the public folder:
.htaccess
.HTACCESS
## Redirect to public folder RewriteEngine on RewriteRule ^$ public/ [L] RewriteRule (.*) public/$1 [L]
Very simple but work for me in my server.
Regards!