Tengo el siguiente problema con CodeIgniter, quiero agregar una ruta pero no me está respondiendo.
tengo el siguiente controlador:
Código PHP:
Esta Vista: Ver original
class Usuaro extends CI_Controller { public function index() { $data['usuarios'] = "Controlador de usuarios"; $this->load->view('usuario', $data); } }
Código PHP:
Ver original
INFO: <?php echo $usuarios;?>
y esto en rutas:
Código PHP:
Ver original
$route['default_controller'] = "welcome"; $route['404_override'] = ''; $route['usuario'] = "usuario/iindex";
pero cuando entro a localhost/usuario
me manda un error 404, pero es el error de apache no del framework.
Cita:
tengo que modificar algua configuración extra?Not Found
The requested URL /usuario was not found on this server.
Apache/2.2.8 (Win32) PHP/5.2.6 Server at localhost Port 8000
The requested URL /usuario was not found on this server.
Apache/2.2.8 (Win32) PHP/5.2.6 Server at localhost Port 8000
Ya tengo abilitado el modulo rewrite del apache.
Cita:
LoadModule rewrite_module modules/mod_rewrite.so
Cita:
<Directory />
Options FollowSymLinks ExecCGI Indexes
AllowOverride All
Order deny,allow
Deny from all
Satisfy all
</Directory>
Options FollowSymLinks ExecCGI Indexes
AllowOverride All
Order deny,allow
Deny from all
Satisfy all
</Directory>
Cita:
Gracias por el apoyo <Directory "C:/AppServ/www">
AllowOverride All
AllowOverride All