小编gak*_*aku的帖子

如何使用nginx仅向特定文件添加标头

我有图片,我想将它们的标题添加到最大,我有可以更改和发布图片的个人资料图片,我想只为帖子图片添加标题,但不是为了个人资料图片,我不知道我怎么能管理这个.谢谢,这是我的配置,

this is the path of posts, /post/name-of-the-picture.jpg

this is the path of users, /user/name-of-the-picture.jpg
Run Code Online (Sandbox Code Playgroud)

我只想在邮件路径中添加标题

location ~* \.(css|js|png|gif)$ {
   expires max;
   add_header Pragma public;
   add_header Cache-Control "public";
}
Run Code Online (Sandbox Code Playgroud)

header nginx

16
推荐指数
1
解决办法
1万
查看次数

标签 统计

header ×1

nginx ×1