1、网页代码设置utf-8编码格式,内容参考如下:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>简体中文标题</title>
</head>
<body>
<center>简体中文内容</center>
</body>
</html>
2、nginx服务端的nginx.conf设置utf-8编码格式。需要注意的是server层和访问路径location都要配置。
server {
listen 80;
server_name houzhigao.com;
charset utf-8;
location / {
root index;
index index.html index.htm;
}
}
3、修改了nginx的配置文件,需要重新加载一下nginx。
执行:
nginx -s reload
或执行:文章来源:https://www.toymoban.com/news/detail-506412.html
/usr/local/nginx/sbin/nginx -s reload
4、最后访问测试:中文解析正常。文章来源地址https://www.toymoban.com/news/detail-506412.html
到了这里,关于nginx访问页面中文乱码解决方案的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!