nginx php 中文乱码怎么办
时间:2022-02-11 13:46
nginx php中文乱码的解决办法:1、将网页代码设置utf-8编码格式;2、在nginx服务端和nginx.conf中设置utf-8编码格式即可。 本文操作环境:linux5.9.8系统、nginx1.14.0版,Dell G3电脑 nginx php 中文乱码怎么办? nginx访问页面 中文乱码 解决方案 今天在nginx上部署一个小网页项目时,中文出现乱码,搜了一下,网上解决方法都是一样 千篇一律 改服务端的编码格式。 这里总结一下解决方法:出现乱码可能由于以下两个位置没有配置编码格式: 1、网页代码设置utf-8编码格式,如下。 2、nginx服务端,nginx.conf设置utf-8编码格式:注意server层 和 访问路径location都要配置一下 修改了nginx的配置文件,重新加载一下nginx 最后访问测试:中文解析正常。 以上就是nginx php 中文乱码怎么办的详细内容,更多请关注gxlsystem其它相关文章!<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>中文标题</title>
</head>
<body>
<center>微信搜索:蜗牛linux</center>
</body>
</html>
server {
listen 81;
set $root F:/Develop/nginx-1.14.0/html;
root $root;
server_name localhost;
access_log logs/host.access.log main;
index index.html index.php;
#设置字符集
charset utf-8;
location / {
root html;
index index.html index.htm;
charset utf-8;
}
}
nginx -s reload