我在 Linux 上运行了很多带有 ASP 扩展名的文件,但我无法重命名。那些文件的内容是 HTML,但当我打开时,Nginx 会带我下载。
有谁知道我可以在 Nginx 上插入什么来将 ASP 文件作为文本/html 打开?
答案1
只需添加 MIME 类型即可types
. 应该出现后nginx.conf
其中有一行内容include /etc/nginx/mime.types
:
http {
......
types {
text/html asp;
}
.....
}
答案2
location ~* .(asp)$ {
add_header Content-Type text/plain;}