Add index.php to DirectoryIndex in Apache2.2 httpd.conf on Windows
#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
DirectoryIndex index.html index.php
</IfModule>
That’s what I did. We have to index our index.php first after that server will take it.
Ref:
http://itguykelly.wordpress.com/2006/11/01/add-indexphp-to-directoryindex-in-apache-httpdconf/
Let me know Once it is done!