我想全局自定义默认 Apache2 目录列表的 HTML 和 CSS。我该怎么做?是否有包含此 HTML“骨架”的文件夹?
答案1
启用自动索引mod,然后在你的 vhost 的主 (/) 目录中添加一个样式表,如下所示:
<VirtualHost *:80>
# all other config
<IfModule mod_autoindex.c>
IndexOptions FancyIndexing
HeaderName header.html
IndexStyleSheet /css.css
</IfModule>
# all other config
</VirtualHost>