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。你可能有什么好主意吗?
谢谢
我想到了两种可能性:
首先,通常我会看到引用的文件名:<Files "wp-config.php">. 我忘记了 Apache 是否需要引号,所以试试这个,看看是否能解决问题。
<Files "wp-config.php">
其次,您的 Apache 服务器管理员可能没有启用AllowOverride允许您执行此操作所需的权限。
AllowOverride
无论哪种情况,检查 Apache 错误日志都会发现真正的问题。