在/usr/local/nginx/conf/nginx.conf 配置文件中插入charset utf-8;或者charset 'utf-8'; server { listen 80; server_name localhost; charset utf-8; #access_log logs/host.access.log main; location / { root html; index index.html index.htm; } 或者 server { listen 80; server_name localhost; charset 'utf-8'; #access_log logs/host.access.log main; location / { root html; index index.html index.htm; }
/usr/local/nginx/sbin/nginx -s reload
以上がnginxホームページの中国語文字化けを解決する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。