5

嗨,我有以下代码用于为 Http2.0 客户端启用 PushPromise。

public static IHtmlString StyleSheet(this HtmlHelper htmlHelper, string contentPath)
{
    UrlHelper urlHelper = new UrlHelper(htmlHelper.ViewContext.RequestContext);

    htmlHelper.ViewContext.RequestContext.HttpContext.Response.PushPromise(contentPath);

    TagBuilder linkTagBuilder = new TagBuilder("link");
    linkTagBuilder.Attributes.Add("rel", "stylesheet");
    linkTagBuilder.Attributes.Add("href", urlHelper.Content(contentPath));

    return new HtmlString(linkTagBuilder.ToString());
}

直到上周五,这一切都运行良好,之后我开始收到拒绝访问异常。

我们已经在 Azure App 服务上托管我们的网站一年多了!!

在此处输入图像描述

关于为什么一年后失败的任何想法?

4

0 回答 0