Thanks anyways.....here is the answer.
Within httpd.conf locate the section:
<IfModule mod_dir.c>
<IfModule mod_php3.c>
<IfModule mod_php4.c>
DirectoryIndex index.php index.php3 index.html
</IfModule>
<IfModule !mod_php4.c>
DirectoryIndex index.php3 index.html
</IfModule>
</IfModule>
<IfModule !mod_php3.c>
<IfModule mod_php4.c>
DirectoryIndex index.php index.html
</IfModule>
<IfModule !mod_php4.c>
DirectoryIndex index.php index.html
</IfModule>
</IfModule>
</IfModule>
I had to add index.php as options there.
Just wanted to post the answer.
Didn't see the post above mine...thank you.
|