Ver Mensaje Individual
  #13 (permalink)  
Antiguo 27/05/2009, 14:09
Avatar de punk567
punk567
 
Fecha de Ingreso: septiembre-2006
Ubicación: Montevideo
Mensajes: 265
Antigüedad: 18 años, 1 mes
Puntos: 5
Respuesta: Zend framework - sub módulos

tengo esto:

$router->addRoute(
'noticias',
new Zend_Controller_Router_Route('noticias/ver/:id',
array('controller' => 'index',
'action' => 'ver',
'module' => 'noticias'
)
)
);

pero no puedo ver la pagina de ninguna manera

http://localhost/proyecto/public/noticias/ver/1/ , asi tampoco

sera algun tema de configuracion?

en el htaccess tengo esto

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]