答案1
您可以将客户端证书设置为忽略
以下是使用 PowerShell 执行此操作的方法
# Import the WebAdministration module
Import-Module WebAdministration
# Specify the IIS site name (replace 'Default Web Site' with your site name)
$siteName = 'Default Web Site'
$site = Get-WebSite -Name $siteName
$site | Get-WebConfiguration -Filter "/system.webServer/security/authentication/clientCertificateMappingAuthentication" | Set-WebConfigurationProperty -Name Enabled -Value False
# Commit the changes
IISReset