Hola nuevamente retomando este tema y creo que el problema era el Apache así que me descargue la versión que viene con el Wamp activo el modulo rewrite y parece que ahora si me muestra las páginas pero con errores.
Cuando llamo a la acción add sale lo siguiente:
Fatal error: Uncaught exception 'Zend_Controller_Dispatcher_Exception' with message 'Invalid controller specified (error)' in C:\wamp\www\zend\library\Zend\Controller\Dispatche r\Standard.php:198 Stack trace: #0 C:\wamp\www\zend\library\Zend\Controller\Front.php (929): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http)) #1 C:\wamp\www\zend\index.php(22): Zend_Controller_Front->dispatch() #2 {main} thrown in C:\wamp\www\zend\library\Zend\Controller\Dispatche r\Standard.php on line 198
Paso el código de mi archivo index.php
Código PHP:
<?php
/*
*Error reporting
*/
error_reporting(E_ALL|E_STRICT);
date_default_timezone_set('America/Lima');
ini_set('display_errors', 'on');
ini_set('include_path', ini_get('include_path').';./library');
ini_set('include_path', ini_get('include_path').';./application/models');
/*
*Zend Loader
*/
$baseUrl = substr($_SERVER['PHP_SELF'], 0, -9);
include "Zend/Loader.php";
Zend_Loader::loadClass('Zend_Controller_Front');
$front = Zend_Controller_Front::getInstance();
$front->setBaseUrl($baseUrl);
$front->setControllerDirectory('./application/controllers');
$front->throwExceptions(false);
$front->dispatch();