|
配置
在server端添加
default_type application/json;(不加点击会下载文件)
charset utf-8;(不加会显示乱码)
server {
listen 80;
server_name localhost;
charset utf-8;
default_type application/json;
#charset koi8-r;
#access_log logs/host.access.log main;
root "D:/phpstudy/PHPTutorial/WWW";
location / {
index index.html index.htm index.php l.php;
autoindex on;
} |