【发布时间】:2015-12-15 11:24:04
【问题描述】:
如何在 ASP.NET 5 (MVC6) 中使用这些方法。在 MVC5 中,我在 Global.asax 中使用过它……现在呢?也许是创业班?
protected void Application_PreSendRequestHeaders(object sender, EventArgs e)
{
HttpApplication app = sender as HttpApplication;
app?.Context?.Response.Headers.Remove("Server");
}
protected void Application_BeginRequest(object sender, EventArgs e)
{
if (this.Request.Url.Host.StartsWith("www") || this.Request.Url.IsLoopback) return;
var url = new UriBuilder(this.Request.Url) { Host = "www." + this.Request.Url.Host };
this.Response.RedirectPermanent(url.ToString(), endResponse: true);
}
谢谢!
【问题讨论】:
标签: c# asp.net-core asp.net-core-mvc