Bonjour,

j'ai réussi à installer ZF mais les problèmes continuent : après avoir créé tutoriel-zf (zf create project tutoriel-zf), si je lance
http://localhost/tutoriel-zf/public/, internal server error.

Comme je soupçonne que ça vienne du .htaccess qui se trouve dans "public", voici ce que j'ai sur mon PC :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
RewriteEngine On
# The following rule tells Apache that if the requested filename
# exists, simply serve it.
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
# The following rewrites all other queries to index.php. The 
# condition ensures that if you are using Apache aliases to do
# mass virtual hosting, the base path will be prepended to 
# allow proper resolution of the index.php file; it will work
# in non-aliased environments as well, providing a safe, one-size 
# fits all solution.
RewriteCond %{REQUEST_URI}::$1 ^(/.+)(.+)::$
RewriteRule ^(.*)$ - [E=BASE:%1]
RewriteRule ^(.*)$ %{ENV:BASE}index.php [NC,L]
Quelqu'un voit-il le problème ?
Le symbôle bizarre à la ligne 14 s'affiche avec Notepad++ "STX"