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 succeeded. My problem is that when I go to http://laravel.dev css files and js file are not loaded, in my console I get a 403 error NetworkError:
403 Forbidden - http://localhost/laravel/public/laravel/css/style.css
Here'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>
How can I fix it ?