Zend SetEnv dans .htaccess ne fonctionne pas

J'ai installé Zend sur mon ubuntu homeserver. Dans mon .fichier htaccess j'ai le code suivant:

SetEnv APPLICATION_ENV development

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

Quand je écho APPLICATION_ENV dans mon index.php dans le dossier public, APPLICATION_ENV n'est pas définie.

Ce que je fais mal?

Mod rewrite est activé dans apache.

source d'informationauteur Arthur