Linux

Nginx 如何以 text/html 格式打開所有 ASP 文件?

  • March 27, 2018

我有很多在 linux 上執行的帶有 ASP 副檔名的文件,但我無法重命名。該文件的內容是 HTML,但是當我打開時,Nginx 會帶我下載。

有誰知道我可以在 Nginx 上插入什麼來打開 ASP 文件作為文本/html?

只需添加一個 MIME 類型types。這應該出現以下行nginx.conf之後include /etc/nginx/mime.types

http {
  ......
  types {
      text/html asp;
  }
  .....
}
location ~* .(asp)$ {
     add_header Content-Type text/plain;}

引用自:https://serverfault.com/questions/522398