IIS配置多域名跨域
微软官方发布过专门的 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