Hi, why not use "php artisan serve" instead of accessing the project public folder directly?
if you prefer doing that, go to public/.htaccess and paste this code
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community