我想给一个目录加个密码保护,结果只找到下面没有密码的代码
<?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”添加密码?
谢谢
您现在可能已经找到了答案,但您需要做的是在您的 Windows 服务器上创建一个用户名为 test 的本地用户,然后将相关密码分配给该用户。IIS 会将输入的凭据映射到本地 Windows,并将根据该 Windows 用户的凭据验证凭据。希望有所帮助。