Ho seguito le indicazioni per scaricare APACHE e PHP ma ho notato una differenza rispetto a quanto indicato da voi:
in httpd il testo da voi evidenziato è questo:
#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
# The index.html.var file (a type-map) is used to deliver content-
# negotiated documents. The MultiViews Option can be used for the
# same purpose, but it is much slower.
#
DirectoryIndex index.html index.html.var
ove la riga in rosso va sostituita con quella in verde:
DirectoryIndex index.html index.html.var index.php
Io ho scaricato la versione 4.4.4 di php e in quel punto c'è invece questo:
#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
come devo sostituirlo io?
Io ho provato con
DirectoryIndex index.html index.html.var index.php
e con
DirectoryIndex index.html index.php
Comunque quando provo a riavviare Apache mi dice che non riesce a caricare:
LoadModule php4_module "C:/php/php4apache2.dll"
eppure mi sono assicurato che nella cartella php (sotto C) ci sia il file php4apache2.dll e ho visto che il nome corrisponde esattamente.
Potete aiutarmi? Grazie