# PHP Upload Limits for Large CSV Files
php_value upload_max_filesize 128M
php_value post_max_size 128M
php_value max_execution_time 300
php_value memory_limit 256M

<IfModule mod_rewrite.c>
RewriteEngine On

# Don't rewrite files and directories that exist
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# Route all requests to index.php
RewriteRule . index.php [L]
</IfModule>