Hi all i'm using laravel 3.x and wamp i have been working for hours to fix the public folder to remove it and i have succeed.My problem is that when i go to http://laravel.dev css files and js file are not loaded, in my console i got a 403 error NetworkError: \[code\]403 Forbidden - http://localhost/laravel/public/laravel/css/style.csshere's my htaccess from public folder <IfModule mod_rewrite.c> Options +FollowSymLinks RewriteEngine On </IfModule><IfModule mod_rewrite.c> RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L]</IfModule>\[/code\]How can i fix it ?