>  기사  >  운영 및 유지보수  >  nginx 홈페이지에서 중국어 왜곡 문자를 해결하는 방법

nginx 홈페이지에서 중국어 왜곡 문자를 해결하는 방법

PHPz
PHPz앞으로
2023-05-23 19:10:042510검색

nginx 홈페이지에서 중국어 왜곡 문자를 해결하는 방법

해결 방법

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

성명:
이 기사는 yisu.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제