Hi @SSRS-VS ,
Based on your description and the tag, I assume your application is an Asp.net Core MVC application, right?
If that is the case, to make the application using Http, instead of Https, you could use the following methods:
- You can opt-out of HTTPS/HSTS when the app is created from the template. Unchecked the "Configure for Https" option:
- Open the launchSettings.json file and change the
sslPort
attribute to0
.In the startup.cs file, remove the
app.UseHttpsRedirection();
from the Configure method. - Open the project's Properties page, in the Debug panel, unchecked the Enable SSL option.
By using this method, if you check the launchSettings.json file, you can see the
sslPort
attribute is changed to0
.
More detail information, see Enforce HTTPS in ASP.NET Core.
The above methods applys to Asp.net core Application, if you have any question about my reply, please let me know freely.
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Best regards,
Dillion