1

In Apache, we can add the description of file by adding the following(similar) in file /etc/apache2/mods-available:

AddDescription "your message" filepath with respect to your shared directory

But how can we set the font color of the "your message" in description. For example take a look of following image: enter image description here

I want the text under rectangular region with font color red. How can we do this ?

4

1 回答 1

1

您可以通过使用 apache AddDescription 指令添加 HTML 消息来做到这一点。引用 apache 文档:

使用 AddDescription 定义的描述性文本可能包含 HTML 标记,例如标签和字符实体。如果描述列的宽度恰好截断了标记元素(例如截断粗体短语的结尾),则结果可能会影响目录列表的其余部分。

例子:

AddDescription "<p style='color: red;'>My Message</p>" /path/to/file/or/directory

这应该适用于 apache 2.2 和 2.4。要了解有关 mod_autoindex 的更多信息,请访问 apache 文档: http ://httpd.apache.org/docs/current/mod/mod_autoindex.html#adddescription

于 2014-12-10T04:12:18.883 回答