I\'d like to correctly support the HTTP HEAD request when bots hit my ASP.NET MVC site using HEAD. It was brought to my attention that all HTTP HEAD requests to the site wer
You can achieve the result by simply doing following
[AcceptVerbs(HttpVerbs.Get | HttpVerbs.Head)] public ActionResult TestMe() =>View();