如何控制mod_autoindex标头插入<meta>标签?

时间:2019-09-07 19:14:21

标签: apache meta mod-autoindex

我的Web服务器使用mod_autoindex来访问可下载文件的目录。

如何使生成的html在标头部分中包含我自己的标签?

P.S。我真正想要的是插入 viewport 标签,以帮助防止Google将网站标记为“不适合移动设备”

1 个答案:

答案 0 :(得分:0)

诀窍是在 mod_autoindex 配置中使用 IndexHeadInsert 指令。对我而言,使用 Arch Linux 是在 /etc/httpd/conf/extra/httpd-autoindex.conf 中,但在您的发行版中可能会有所不同。

IndexOptions FancyIndexing HTMLTable VersionSort
IndexHeadInsert "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">"