Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
.htaccess のこのディレクティブ:
<Files wp-config.php> order allow,deny deny from all </Files>
エラー 500 が表示されます。
ありがとうございました
2つの可能性が思い浮かびます。
まず、通常、引用符で囲まれたファイル名が表示されます<Files "wp-config.php">。Apacheに引用符が必要かどうかを忘れたので、これを試して、問題が解決するかどうかを確認してください。
<Files "wp-config.php">
次に、Apacheサーバー管理者が、これを実行するために必要なAllowOverride権限を有効にしていない可能性があります。
AllowOverride
いずれの場合も、Apacheエラーログを確認すると、真の問題が明らかになります。