为每种类型的文件打印不同的标题

发布于 2024-12-01 23:10:26 字数 231 浏览 0 评论 0原文

我正在寻找一个示例,如何为每种类型的文件打印不同的标题。

例如:

set the foo:baa in headers .png files.
set the foo:baa2 in headers .txt files

。 等等..

可以使用 apache/.htaccess 或某些 .config 文件吗? 我希望这一点很清楚。 提前致谢

I'm looking for an example how printing different headers for each types of file.

for example:

set the foo:baa in headers .png files.
set the foo:baa2 in headers .txt files

.
etc..

It is possible using apache/.htaccess or with some .config file?
I hope this is clear.
Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

静若繁花 2024-12-08 23:10:26

怎么样:

<IfModule mod_headers.c>  
    <Files "*.txt">  
        Header set Header-name "header content"
    </Files>  
</IfModule>

How about:

<IfModule mod_headers.c>  
    <Files "*.txt">  
        Header set Header-name "header content"
    </Files>  
</IfModule>

?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文