私はこのコードを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."));
}
それを行うためのより良い方法はありますか?