Tuesday, July 3, 2012

Add Index.php to Apache Default Index

Adding index.php to the list of Directory Indexes is as simple as adding the following lines to your httpd.conf

<IfModule dir_module>
DirectoryIndex index.html index.php
</IfModule>

You will also want to make sure you added:


AddType application/x-httpd-php .php

So it will process PHP type files.


No comments:

Post a Comment