Si quieres montar un servidor local el windows, mejor instalate XAMPP, a mi me ha ido perfecto para poder mantener la web mientras arreglaba mi maquina debian.
http://www.apachefriends.org/en/xampp-windows.html
De todas formas para que te cargue automaticamente el index.php debes modificar el httpd.conf del apache, buscar y añadir esto:
Código:
<IfModule mod_dir.c>
DirectoryIndex index.html index.htm index.shtml index.cgi
</IfModule>
y añadir la linea:
Código:
<IfModule mod_dir.c>
DirectoryIndex index.html index.htm index.shtml index.cgi index.php
</IfModule>