This may be relevant to a certain subset of people with this issue...perhaps in a different flavor.
I was forcing an https redirect on RELEASE.
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
{
filters.Add(new HandleErrorAttribute());
#if !DEBUG
filters.Add(new RequireHttpsAttribute());
#endif
}
And there wasn't https enabled on my iis express. Working correctly on DEBUG