I have created a redirect rules in my web.config to redirect my website from http to https. The issue i have is that every single link on the website is now https. I have a
asp.net core < 2 just put this code into your startup.cs
// IHostingEnvironment (stored in _env) is injected into the Startup class.
if (!_hostingEnvironment.IsDevelopment())
{
services.Configure(options =>
{
options.Filters.Add(new RequireHttpsAttribute());
});
}