nginx首页中文乱码如何解决?本篇文章为大家分享一下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
            Copyright © 2009-2022 www.wtcwzsj.com 青羊区广皓图文设计工作室(个体工商户) 版权所有 蜀ICP备19037934号