index.php wird nicht automatisch angezeigt

tux972

Member
Guten Abend,

Apache 1.3 zeigt mir die index.php nicht automatisch an obwohl follgenes eingetragen ist. Welche Einstellung gehoert noch gemacht?

Bei Apache 2.2 ist das <IfModule dir_module> das duerfte es aber beim 1.3 nicht geben.

Code:
<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.html
        </IfModule>
    </IfModule>
</IfModule>

DANKE!
 
Zurück
Oben