I have an ASP.NET MVC 4 project that I just deployed to IIS. When I tried to browse the web from the IIS, it always redirect to login.aspx (which I believe I have no such file on my project, I tried to search for login.aspx file on my project and found none). I got this error message:
404 - File or directory not found.
The resource you are looking for might have been removed, had its name changed, or is temporarily unavailable.
I know there are some questions out there that are similar to mine, but none of the solution provided work on mine. Can you help please? Thank you!
More info: btw, i'm using windows authentication. here is the code in my web.config file:
<authentication mode="Windows"/>
<identity impersonate="true"/>
<authorization>
<deny users="?"/>
</authorization>