Laravel 4 remover Index.php da URL

Preciso de ajuda com o aplicativo laravel 4, preciso remover o Index.php do url. Tentei a solução mencionada na documentação do laravel.

Pretty URLs
Apache

The framework ships with a public/.htaccess file that is used to allow URLs without index.php. If you use Apache to serve your Laravel application, be sure to enable the mod_rewrite module.

If the .htaccess file that ships with Laravel does not work with your Apache installation, try this one:

Options +FollowSymLinks
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

alguma sugestão :) ?

questionAnswers(7)

yourAnswerToTheQuestion