デフォルトのDirectoryIndex home.htmlをロードしようとしていますが、サイトは引き続きindex.phpに移動します。ウェブサイトはWordPressに基づいて構築されました。
httpd.conf
DirectoryIndex index.html home.html index.php index.html.var
.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^home\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
この問題にご協力いただきありがとうございます。
答え1
HTML Welcomeページの使用に固執する場合は、次のことができます。
- index.htmlの名前をdefault.htmlに変更します。
- index.phpと同じディレクトリにdefault.htmlをアップロードしてください。
- DirectoryIndex値にdefault.htmlを追加します。
FWIW、この問題はWordPress 2.7以降に存在しました。バラよりこのサポートフォーラム投稿(過去の記事2ページ)