IIS設置了歌詞爲text/plain格式,但是.net core項目還是訪問不了,404,是應.net core裏沒有支持

 

IIS設置了歌詞爲text/plain格式,但是.net core項目還是訪問不了,404,是應.net core裏沒有支持

在StartUp靜態文件支持裏添加上就可以了。

var provider = new FileExtensionContentTypeProvider();
provider.Mappings.Add(".lrc", "text/plain");
app.UseStaticFiles(new StaticFileOptions()
{
ContentTypeProvider = provider,//支持某文件格式
OnPrepareResponse = ctx =>
{//.net 緩存
ctx.Context.Response.Headers.Append("Cache-Control", "public,max-age=600");
}
});

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章