更改 Apache 目录列表的 HTML

更改 Apache 目录列表的 HTML

我想全局自定义默认 Apache2 目录列表的 HTML 和 CSS。我该怎么做?是否有包含此 HTML“骨架”的文件夹?

答案1

解决了: https://stackoverflow.com/questions/30880975/how-to-style-directory-listings-with-apache-mod-autoindex-using-namewidth-html#55087425

启用自动索引mod,然后在你的 vhost 的主 (/) 目录中添加一个样式表,如下所示:

<VirtualHost *:80>
# all other config
<IfModule mod_autoindex.c>
    IndexOptions FancyIndexing
    HeaderName header.html
    IndexStyleSheet /css.css
</IfModule>
# all other config
</VirtualHost>

相关内容