Par "les fichiers ne sont pas interprétés" tu entends : "mon navigateur me demande de télécharger mon fichier" ?
Dans ce cas, il s'agit effectivement de modifier ton fichier httpd.conf
et de localiser une section de ce genre :
1 2 3 4
| AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddType application/x-httpd-php .php
AddType application/x-httpd-php .php3 |
tu devras alors rajouter :
AddType application/x-httpd-php .php4
Il est aussi possible de préciser les fichiers index.* par défaut qu'apache devra lire :
DirectoryIndex index.php index.php4 index.html index.htm index.html.var
Partager