access to this resource on the server is denied laravel

Solutions on MaxInterview for access to this resource on the server is denied laravel by the best coders in the world

showing results for - "access to this resource on the server is denied laravel"
Elisa
31 Feb 2018
1Create and put this .htaccess file in your laravel installation(root) folder.
2
3<IfModule mod_rewrite.c>
4    RewriteEngine on
5    RewriteCond %{REQUEST_URI} !^public
6    RewriteRule ^(.*)$ public/$1 [L]
7</IfModule>