<返回更多

解决nginx首页中文乱码问题

2019-07-08    
加入收藏
在/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
声明:本站部分内容来自互联网,如有版权侵犯或其他问题请与我们联系,我们将立即删除或处理。
▍相关推荐
更多资讯 >>>