美文网首页
常见的跨域场景

常见的跨域场景

作者: 溺水的睫毛 | 来源:发表于2017-12-14 14:20 被阅读0次

    所谓的同源是指域名,协议,端口号均为相同。

    http://www.nealyang.cn/index.html 调用 http://www.nealyang.cn/server.php 非跨域

    http://www.nealyang.cn/index.html 调用 http://www.neal.cn/server.php 跨域,主域不同

    http://abc.nealyang.cn/index.html 调用 http://def.neal.cn/server.php 跨域,子域名不同

    http://www.nealyang.cn:8080/index.html 调用 http://www.nealyang.cn/server.php 跨域,端口不同

    https://www.nealyang.cn/index.html 调用 http://www.nealyang.cn/server.php 跨域,协议不同

    localhost 调用 127.0.0.1 跨域

    相关文章

      网友评论

          本文标题:常见的跨域场景

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