本人不懂linux只是說lnmap好用就用了以下是論壇教程但看不懂怎么設置 尤其是第二步,怎么修改? Nginx: 一、確定你的Linux系統(tǒng)是UTF編碼,Root登錄SSH:
- env|grep LANG
- LANG=en_US.UTF-8
二、NGINX配置文件里默認編碼設置為utf-8
- server
- {
- listen 80;
- server_name xxxx.com ;
- index index.html index.htm index.php;
- root /usr/local/nginx/html/inginx.com;
- charset utf-8;
- }
復制代碼 |