微軟官方釋出過專門的 IIS CORS模組,檔案大小不到1M。
下載地址:https://www.iis.net/downloads/microsoft/iis-cors-module
官方參考手冊:
https://learn.microsoft.com/zh-cn/iis/extensions/cors-module/cors-module-configuration-reference
<system.webServer>
<cors enabled="true">
<add origin="http://127.0.0.1:86"
allowCredentials="true"
maxAge="120">
<allowHeaders allowAllRequestedHeaders="true" />
</add>
<add origin="https://www.mysite.com"
allowCredentials="true"
maxAge="120">
<allowHeaders allowAllRequestedHeaders="true" />
</add>
</cors>
</system.webServer>
————————————————
原文連結:https://blog.csdn.net/bigcarp/article/details/135004990