如何在 Nginx 中提供.txt
带有标头的文本()文件?Content-Type: text/plain; Charset=UTF-8
我在 Ubuntu 20.04 上运行着 nginx/1.18.0,并且nginx.conf
进行了如下设置:
http {
(...)
include /etc/nginx/mime.types;
我mime.types
有这个:
types {
(...)
text/plain txt;
但是当我访问文本文件时,它会带有以下标题:
HTTP/1.1 200 OK
(...)
Content-Type: text/plain
但我想用这些标题来提供它:
Content-Type: text/plain; charset=UTF-8
我怎样才能做到这一点?
答案1
你想要的只是这个:
charset utf-8;