17/01/2013, 14:38
|
| | Fecha de Ingreso: junio-2009 Ubicación: cali-colombia
Mensajes: 51
Antigüedad: 15 años, 6 meses Puntos: 0 | |
codeigniter 404 not found 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. |