我把这段代码写在Application_BeginRequest
if (!Request.IsLocal && Request.Url != null && !Request.Url.ToString().Contains("www."))
{
string requestedUrl = Request.Url.ToString();
Response.Redirect(requestedUrl.Replace("http://", "http://www.").Replace("https://", "https://www."));
}
有没有更好的方法来做到这一点?