在虚拟主机中设置起始页 ASP.NET

Setting start page in web hosting ASP.NET

Parallel Plesk 不会打开我在默认目录中设置的域名的默认页面,而是打开我的 ASP.NET 网络应用程序的登录页面。但是,一旦我通过提供正确的凭据登录,它就会在我的域名上打开默认页面。 这是我的 web.config 文件:

<system.web>
    <compilation debug="true" targetFramework="4.5" />
    <authentication mode="Forms">
        <forms loginUrl="Login.aspx" name=".ASPXFORMSAUTH"></forms>
    </authentication>      
    <httpRuntime targetFramework="4.5" maxRequestLength="20896" />
    <authorization>
        <deny users="?"/>
    </authorization>
</system.web>

<location path="UserPanel.aspx">
    <system.web>
         <authorization>
             <allow users="*"/>
         </authorization>
    </system.web>
</location>

如果您在 IIS(7 或更高版本)上托管,请在 <system.webServer>(您的 web.config)中添加:

<defaultDocument>
    <files>
        <clear/>
        <add value="UserPanel.aspx" />
    </files>
</defaultDocument>