我正在尝试通过 将用户添加到 IIS 管理器web.config
,但是每当我添加以下行时,网站就会停止工作并说web.config
无效。
如果我在 中添加这些行,该网站就可以工作administration.config
,但我喜欢通过坚持使用web.config
.
<system.webServer>
<management>
<authorization defaultProvider="ConfigurationAuthorizationProvider">
<authorizationRules>
<scope path="/MyApp">
<add name="domain\user" />
</scope>
</authorizationRules>
</authorization>
</management>
</system.webServer>