跨域访问同一服务器上托管的文件
我在一台网络服务器上有两个域。我在domain1 上有图像和其他文件,我想在domain2 的网站上使用它们。由于种种原因,在这种特定情况下,我不能只是将文件复制到第二个域。
如果我直接从其他站点通过代码中的 http 调用来调用这些文件,这是否会显着影响我的加载时间和带宽,因为它们都存储在同一物理服务器上?
如果重要的话,我们正在谈论 LAMP 环境。
提前致谢!
I have two domains sitting on the one webserver. I have images and other files on domain1 that I want to use on the site for domain2. For a whole shedload of reasons, I can't just copy the files over to the second domain in this particular scenario.
If I'm calling these files via http calls in the code directly from the other site, will this significantly impact my loadtimes and bandwidth as they are both stored on the same physical server?
if it matters, we're talking about a LAMP environment.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不会。Apache 在处理 HTTP 请求时不会区分不同的域。实际上,在一台服务器上拥有一个域与在一台服务器上拥有两个域相同。
仅当您进行 AJAX 调用时,跨域才会成为问题。
No. Apache does not make difference between different domains when serving HTTP requests. Effectively having one domain on one server is the same as having two domains on one server.
Only if you are doing AJAX calls cross-domains become an issue.