ccschmitz
1/28/2012 - 5:16 PM

Laravel MAMP Setup

Laravel MAMP Setup

Here's how I setup Laravel on MAMP:

1. Add a .htaccess file to the root of the application with the following rules:

<IfModule mod_rewrite.c>
    RewriteEngine on

    RewriteRule ^$ public/ [L]
    RewriteRule (.*) public/$1 [L]
</IfModule>

2. Added the following line somewhere in public/index.php:

if (strpos($_SERVER['HTTP_HOST'], 'localhost') !== false)
{
    $_SERVER['LARAVEL_ENV'] = 'local';
}
else
{
    $_SERVER['LARAVEL_ENV'] = 'production';
}

3. Create the application/config/local directory

4. Create the application/config/local/application.php file and put the following in it:

<?php

return array(

    'url' => 'http://localhost:8888/_app_name_'

);