php_flag display_errors off  
AddType text/x-component .htc  
<IfModule mod_rewrite.c>   
 DirectoryIndex index.php   
 RewriteEngine On   
 RewriteCond $1 !^(index\.php|assets|robots\.txt|favicon\.ico)   
 RewriteCond %{REQUEST_FILENAME} !-f   
 RewriteCond %{REQUEST_FILENAME} !-d   
 RewriteRule ^(.*)$ index.php/$1 [L]  
</IfModule>  
<IfModule !mod_rewrite.c>   
 ErrorDocument 404 /index.php  
</IfModule>