27/09/2012, 16:02
|
| | | Fecha de Ingreso: agosto-2011 Ubicación: /home/Gdl
Mensajes: 242
Antigüedad: 13 años, 2 meses Puntos: 11 | |
Respuesta: zf2 + modulo por default Gracias GatorV, haber si entendi , quedaria algo asi?? Código PHP: return array(
'router' => array(
'routes' => array(
'home' => array(
'type' => 'Zend\Mvc\Router\Http\Literal',
'options' => array(
'route' => '/',
'defaults' => array(
'controller' => 'Application\Controller\Index',
'action' => 'index',
),
),
),
'home' => array(
'type' => 'Zend\Mvc\Router\Http\Literal',
'options' => array(
'route' => '/',
'defaults' => array(
'controller' => 'Album\Controller\Index',
'action' => 'index',
),
),
),
Cita:
Iniciado por GatorV No eso no es lo correcto, si te fijas en TuApp\Module\Application\config\module.config.php, tienes esto:
Código PHP:
Ver original 'type' => 'Zend\Mvc\Router\Http\Literal', 'route' => '/', 'controller' => 'Application\Controller\Index', 'action' => 'index', ), ), ),
Basta con que pongas en tu application.config.php, una ruta home a tu otro controller.
Saludos.
__________________ ( + ) lineas de código ( - ) televisión |