<IfModule mod_rewrite.c>
RewriteEngine On
#WWW SI DIERA INPUT FILE SPECIFIED EN EL SERVER, DESCOMENTAR LA DE ABAJO Y COMENTAR LA SIGUIENTE
#RewriteCond %{REQUEST_URI} ^/system.*
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
#WWW SI DIERA INPUT FILE SPECIFIED EN EL SERVER, DESCOMENTAR LA DE ABAJO Y COMENTAR LA SIGUIENTE
#RewriteRule ^(.*)$ index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>