05/01/2013, 02:35
|
| | Fecha de Ingreso: junio-2009
Mensajes: 155
Antigüedad: 15 años, 5 meses Puntos: 5 | |
Respuesta: Problemas al ejecutar un controlador(necesito poner index.php en la url) Gracias por responder.
De hecho asi tenia el htaccess y no me funcionaba, lo modifique por que segun ese era el problema ( el 0 en lugar del 1), pero aun asi no me funciono.
Anteriormente lo tenia asi:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
Luego en otro foro vi que estaba con el 0 y lo deje asi :
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$0 [L]
despues vi otra posible solucion, la cual es la que tengo en el primer tema , y aun asi no funciona.
Copie y pegue el codigo tal cual como viene en el sitio que me pasaste:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
pero igual no funciona. |