美文网首页
Asp.Net MVC CORS

Asp.Net MVC CORS

作者: 寻找无名的特质 | 来源:发表于2022-11-10 05:33 被阅读0次

    Asp.Net MVC项目需要使用跨域访问,也就是运行CORS,可以在web.config中进行设置,方法如下:

    <configuration>
    <system.webServer>
    <httpProtocol>
    <customHeaders>
    <add name="Access-Control-Allow-Origin" value="*" />
    </customHeaders>
    </httpProtocol>
    </system.webServer>
    </configuration>

    通过添加自定义Access Control Allow Origin允许跨域访问。在IIS中的设置相同。参考https://enable-cors.org/server_iis7.html
    如果仅希望指定网站可以访问,可以设置value值。

    相关文章

      网友评论

          本文标题:Asp.Net MVC CORS

          本文链接:https://www.haomeiwen.com/subject/xujntdtx.html