在我的应用程序中,我需要设置一个http响应头。我想在web.config中这样做。
执行此操作的最佳方式是< customHeaders> web.config
文件的元素。请注意,这仅适用于IIS版本7及更高版本。
添加示例头的配置将是:
<configuration>
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="Content-Language" value="*" />
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>
有关更多信息,请参阅IIS “Custom Headers” Configuration Reference page
原文链接:https://www.f2er.com/aspnet/253573.html