服务器中文件是中文,在服务器上显示正常,但在浏览器却是乱码.使用charset 指定字符集
server {
listen 80;
server_name www.aaa.com;
charset utf-8; --- 指定字符集
location / {
root /html/www;
#index index.html index.htm;
autoindex on;
}
}