Nginx 中的自动索引列表 UTF-8 字符集

Nginx 中的自动索引列表 UTF-8 字符集

我的 nginx 自动索引页面无法正确显示 UTF-8 字符, utf-8 问题

我已经charset utf-8;在服务器块配置nginx.conf文件的某些部分进行了设置,但是似乎并没有解决问题。

答案1

添加charset UTF-8;到 http、服务器或位置。

这是我的相关部分/etc/nginx/conf.d/default.conf,现在自动索引显示 UTF 字符。

server {
  listen 80;
  charset UTF-8;
  location / {
    root /usr/share/nginx/html;
    location /some/path {
      autoindex on;
    }
  }
}

我发现https://www.cyberciti.biz/faq/nginx-set-http-content-type-response-header-to-charset-utf8/

相关内容