想访问 http://example.com/a.png
,解析出来的是 HTML 内容并执行,而不是 png 图片。
可是分别设置如下 location,只有 /test/
这个 location
成功了。
location /test/ {
default_type text/html;
types {
text/html png;
}
}
location \.png {
default_type text/html;
types {
text/html png;
}
}
官网文档也没有讲清楚:
http://nginx.org/en/docs/http/ngx_http_core_module.html#types
请问重设 Nginx 的 Content-Type 只能针对目录吗?不能针对以特定后缀结尾的 URL 吗?
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.