最佳答案
如何在 nginx 中覆盖默认的 Content-Type? 目前当我请求01.dae 文件时,有
Content-Type: application/octet-stream;
我也希望如此
Content-Type: application/xml;
我试过
location ~* \.dae$ {
types { };
default_type application/xml;
}
还有
location ~* \.dae$ {
add_header Content-Type application/xml;
}
但什么都没用。