我想禁用 Apache 上的目录索引。
这是我的完整 .htaccess 文件。但是,只要我取消注释,Options -Indexes
服务器就会崩溃。
我究竟做错了什么?
#Options –Indexes
<IfModule mod_expires.c>
# Turn on the Expires engine
ExpiresActive On
# CSS and JavaScript
ExpiresByType text/css "access plus 1 hour"
ExpiresByType application/javascript "access plus 1 hour"
# Media: images
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/jpg "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
# Webfonts
ExpiresByType application/x-font-ttf "access plus 1 month"
ExpiresByType font/opentype "access plus 1 month"
ExpiresByType application/x-font-woff "access plus 1 month"
ExpiresByType image/svg+xml "access plus 1 month"
ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
<IfModule mod_headers.c>
Header append Cache-Control "public"
</IfModule>
</IfModule>
答案1
可能您的 Apache 已配置httpd.conf
为AllowOverride
这样的值,它不允许您调整 .htaccess 中的任何选项。
您可以访问httpd.conf
Apache 错误日志吗?
答案2
万一其他人遇到同样的问题,问题是我复制并粘贴在该行中:
Options –Indexes
Apache 无法处理连字符的编码!