我正在使用表单身份验证来保护我的应用程序。
我在 web.config 中有以下内容:
<authentication mode="Forms">
<forms loginUrl="Login.aspx" name="ProjectName" defaultUrl="Users.aspx" slidingExpiration="true" timeout="2000" path="/" />
</authentication>
<location path="default.aspx">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
这允许我访问 www.mysite.com/default.aspx,但我希望能够访问 www.mysite.com,但是当我尝试导航到该 URL 时,它会将我重定向到登录页面。