#推奨: 「index.php のロードに失敗する場合の解決策: まず、「httpd.conf」ファイルを見つけて開き、次に内容を「DirectoryIndexindex.hmtlindex.php」として追加し、最後に「httpd-vhosts.php」を変更します。 conf」ファイルそれだけです。
PHP チュートリアル 」
プロジェクトにアクセスするときに、index.php ファイルを自動的にロードすることはできません1. 構成ファイル D:\lamp\apache\conf\httpd.conf を変更し、DirectoryIndexindex.hmtlindex.php
<IfModule !mpm_netware_module> DirectoryIndex index.hmtl index.php <IfModule !mpm_winnt_module>2 を追加します。2 番目の方法: D:\lamp\apache\conf\extra\ httpd-vhosts.conf ファイルに加えて
Options +Indexes DirectoryIndex index.php index.htmlを変更します
以上がIndex.phpが読み込めない場合の対処法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。