Ver Mensaje Individual
  #3 (permalink)  
Antiguo 04/06/2010, 17:21
stimorol
 
Fecha de Ingreso: junio-2010
Mensajes: 8
Antigüedad: 14 años, 5 meses
Puntos: 0
Respuesta: Problema enrutamiento con Zend Framework

Gracias por el interes Gator.

Ya lo he solucionado, era cosa del .htacces pero el mod_rewrite estaba instalado, he tenido que cambiar el .htaccess y ponerlo así.

Código:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
</IfModule>
Options All -Indexes
AddType x-mapp-php5 .php
AddType x-mapp-php5 .php
No se decir porqué, pero así funciona.