我想添加一个密码保护目录,但我只找到以下没有密码的代码
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<directoryBrowse enabled="true" />
</system.webServer>
<system.web>
<authentication mode="Windows" />
<authorization>
<allow users="test" />
</authorization>
</system.web>
</configuration>
如何为用户“test”添加密码?
谢谢
答案1
您现在可能已经找到答案了,但您需要做的是在 Windows 服务器上创建一个本地用户,用户名是 test,然后为该用户分配相关密码。IIS 会将输入的凭据映射到本地 Windows,并根据该 Windows 用户的凭据验证凭据。希望对您有所帮助。