http://akrabat.com/wp-content/upload...mework_134.pdf
No sé si es el mejor. Si alguien conoce uno mejor que por favor me lo diga. Bueno, deice esto:
Cita:
No entiendo dónde se escribe ese RewriteEngine on y todo lo demás. Me habla del .htaccess, pero en el zend que me he descargado no aparece ese htaccess en el directorio raiz. No sé si tengo que crearlo yo, pero no sé qué tipo de fichero es. En el tutorial habla de la versión 0.9.2, y yo tengo la 1.9.5, pero entiendo que al ser una versión posterior no debería haber problemas.Bootstrapping
The Zend Framework’s controller, Zend_Controller is designed to support websites with clean
urls. To achieve this, all requests need to go through a single index.php file, known as the
bootstrapper. This provides us with a central point for all pages of the application and ensures
that the environment is set up correctly for running the application. We achieve this using an
.htaccess file in the zf-tutorial root directory:
Page 3 of 18
zf-tutorial/.htaccess
RewriteEngine on
RewriteRule .* index.php
php_flag magic_quotes_gpc off
php_flag register_globals off
The RewriteRule is very simple and can be interpreted as “for any url, use index.php instead”.
The Zend Framework’s controller, Zend_Controller is designed to support websites with clean
urls. To achieve this, all requests need to go through a single index.php file, known as the
bootstrapper. This provides us with a central point for all pages of the application and ensures
that the environment is set up correctly for running the application. We achieve this using an
.htaccess file in the zf-tutorial root directory:
Page 3 of 18
zf-tutorial/.htaccess
RewriteEngine on
RewriteRule .* index.php
php_flag magic_quotes_gpc off
php_flag register_globals off
The RewriteRule is very simple and can be interpreted as “for any url, use index.php instead”.
Me parece entender que el bootstrap no es un fichero que debe venir el el paquete de zend sino que debo crearlo yo para cada proyecto, y se llama index.php ¿es así?
Por otro lado me dicen en otros tutoriales
http://www.phpeveryday.com/articles/...cess-P472.html
este por ejemplo, que cree yo el .htaccess, pero no sé qué extensión debe tener ese fichero.
Bueno, en general, a ver si alguien me recomienda un buen tutorial escrito en cristiano.