I tried to make Laravel works on my environment (MAMP) but i'm stuck in this situation.
The index.php file of Laravel is into a subfolder called "public", so if I want to test my application I need to access it with this url http://localhost/laravel/public/
but I want access with http://localhost/laravel
I tried to set an htaccess with this rows but it doesn't work:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^(.*)$ public/$1
</IfModule>
I'm not sure that this htaccess can resolves this situation, I get a 404 generated by Lavarel.