在/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 중국어 웹사이트의 기타 관련 기사를 참조하세요!