I'm building an ASP.NET MVC site on my home computer. It's Windows 10 running IIS Express. I have .NET 4.6 installed and I'm using Visual Studios 2013 Web Express to write and publish code. When I publish my site and try to run it, I get HTTP Error 403.14 - Forbidden. I've been digging around for solutions and this seems like a common error with a few easy answers. However, I have tried them and none have worked.
Here's what I've checked so far:
1) The application pool is .NET version 4.0, not 2.0
2) I have the following in web.config (which for most people is the fix for this issue but has no effect good or bad when I try it):
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
3) I've check and I don't have any other services with the same or similar name running.
What else could I be missing?