<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Route index.php/controller/function/arguments/more arguments
RewriteRule (.*) index.php/$1
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /notfound.php
</IfModule>