正確写法
<authorization>
<deny users="?"/>
<allow users="*"/>
</authorization>
错误写法
<authorization>
<allow users="*"/>
<deny users="?"/>
</authorization>
正確写法
<authorization>
<deny users="?"/>
<allow users="*"/>
</authorization>
错误写法
<authorization>
<allow users="*"/>
<deny users="?"/>
</authorization>