Hola,
tengo un proyecto en codeigniter, tengo la url
localhost/miproyecto/index.php/cms (asi me funciona), pero si
utilizo la ruta localhost/miproyecto/cms (me sale error 404).
Tengo mi htaccess
RewriteEngine On
# The RewriteBase / instruction is commented. Remove the "#" to uncomment
RewriteBase /
# Ionize Rules
# Keep these lines even in maintenance mode, to have an access to the website
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|robots\.txt)
RewriteRule ^(.*)$ index.php/$1
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(application|modules|plugins|system|themes) index.php/$1 [L]
ya tengo habilitado el modulo rewrite_module y cambie la opcion
AllowOverride None a AllowOverride All.
alguien sabe que puede ser.