Hi,
I've got problems with the DirectoryIndex directive of Apache. If I append "index.php3" to it, Apache do not give http://localhost/index.php3 if requested http://localhost/
what does it give instead? dont you have some special <directory....> directives in httpd.conf?
does it work for other directories other than the server root?
Regards,
Have you restarted Apache?
Best regards, Tom S.
It gives the list of the directory content, and this for every directory if index.html does not exists
It list the directory content, and this for every directory if index.html does not exists
The DirectoryIndex directive reads left to right. Therefore, to use index.php3 as your dirrectory index file it must look something like this:
DirectoryIndex index.php3 index.html index.shtml
Hope this helps!
Cheers,
Geoff www.mithril.com
There's nothing to do with the order of the index files. I found a solution to my problem, Apache accept my DirectoryIndex directive only after the lines where I had the PHP3 mime type.
Thanks