So I published my webpage on a server and when I try to access it from a webbrowser I get the following error: HTTP Error 403.14 - Forbidden The Web server is configured to not list the contents of this directory.
I'm pretty sure the problem is from my web.config file . Any help would be greatly appreciated :
<configuration>
<system.web>
<customErrors mode="Off"/>
<authentication mode="Forms">
<forms name=".ASPXFORUM" loginUrl="login.aspx" protection="All" timeout="30" path="/" />
</authentication>
<authorization>
<deny users="?" />
</authorization>
</system.web>
</configuration>