Heim > Artikel > Backend-Entwicklung > Was tun, wenn index.php nicht geladen werden kann?
Lösung für den Fehler beim Laden von index.php: Suchen und öffnen Sie zuerst die Datei „httpd.conf“ und fügen Sie dann den Inhalt als „DirectoryIndex index.hmtl index.php“ hinzu .conf“-Datei Das ist es.
Empfohlen: „PHP-Tutorial“
Beim Zugriff auf das Projekt kann die Datei index.php nicht automatisch geladen werden
1. Ändern Sie die Konfigurationsdatei D:lampapacheconfextra httpd und fügen Sie DirectoryIndex index.hmtl index.php hinzu.
<IfModule !mpm_netware_module> DirectoryIndex index.hmtl index.php <IfModule !mpm_winnt_module>
2. Ändern Sie D:lampapacheconfextra httpd -vhosts.conf-Datei plus
Options +Indexes DirectoryIndex index.php index.html
Das obige ist der detaillierte Inhalt vonWas tun, wenn index.php nicht geladen werden kann?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!