现在要实现一个效果,点击页面预览按钮访问nginx,预览文件。
但是nginx访问文件,只能下载,不能预览。如何让他不下载,只预览?
nginx配置如下:
server{
listen 9990;
server_name localhost;
# 配置下载
location /yulan {
alias D:/FFOutput;
autoindex on;
}
location /xiazai {
alias D:/FFOutput;
autoindex on;
add_header Content-Disposition "attachment;filename*=utf-8'zh_cn'$arg_n";
}
}