Support the ongoing development of Laravel.io →
Configuration
Last updated 1 year ago.
0
Last updated 1 year ago.
0

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?

Last updated 1 year ago.
0

Buy a Mac ;-) he he

Last updated 1 year ago.
0
  • In htdocs create a folder called laravel
  • Download laravel from github
  • Copy contents to this folder
  • run composer install open your htaccess file and make it look like this:
<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.

Last updated 1 year ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

bennyboy benoit1980 Joined 10 Sep 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.