I would like to publish an MVC5 web application to windows 10 IIS machine.
I have successfully deployed MVC Core on that machine, but I'm unsuccessful deploying an MVC 5 application.
I created a new project and deployed it. But I get this error:
HTTP Error 403.14 - Forbidden
I tried the following changes:
- Adding IUSR and IIS_IUSERS access to web directory
- Changing web.config , add
" <modules runAllManagedModulesForAllRequests="true"/>" or " <modules runAllManagedModulesForAllRequests="false"/>"
Does anybody know how to resolve this issue?
Thank you