Laravel MAMP Setup
Here's how I setup Laravel on MAMP:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ public/ [L]
RewriteRule (.*) public/$1 [L]
</IfModule>
public/index.php
:if (strpos($_SERVER['HTTP_HOST'], 'localhost') !== false)
{
$_SERVER['LARAVEL_ENV'] = 'local';
}
else
{
$_SERVER['LARAVEL_ENV'] = 'production';
}
application/config/local
directoryapplication/config/local/application.php
file and put the following in it:<?php
return array(
'url' => 'http://localhost:8888/_app_name_'
);