Go into your config\app.php file and set 'debug' => true. Then reload the page. This will give you a more detailed error message. Is the database running or configured?
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
RewriteBase /laravel/public/
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
open your browser and type:
localhost/laravel/public
Or your localhost name.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community