Fazendo o Laravel 4 funcionar no GoDaddy

Arquivo .htaccess necessário (em / public) para remover index.php do url e permitir PUT e DELETE para recursos.

<Limit GET POST PUT DELETE>
Allow from all

</Limit>
<IfModule mod_rewrite.c>
Options -Multiviews

Options +FollowSymLinks

RewriteEngine On

RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule . /index.php [L]

</IfModule>