mvc的项目
forms认证配置如下:
<authentication mode="Forms">
<forms loginUrl="~/LoginCenter" timeout="2880" />
</authentication>
<authorization>
<deny users="?"/>
</authorization>
有个页面地址是 http://localhost/student/index想让所有用户访问
请问配置里面的xxxxx应该怎么写?
<location path="xxxxx">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>