我有一個運行在IIS7上的PHP5網站,我只是想在名爲admin的子文件夾上添加基本身份驗證。在PHP網站上的IIS7基本身份驗證
我啓用了匿名身份驗證和基本身份驗證,我只是想關閉子文件夾的匿名身份驗證,以強制基本身份驗證?
有什麼建議嗎?
我嘗試添加一個web.config中的子文件夾下面的:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<security>
<authentication>
<anonymousAuthentication enabled="false" />
</authentication>
</security>
</system.webServer>
</configuration>