跨域访问同一服务器上托管的文件

发布于 2024-11-16 15:07:00 字数 215 浏览 1 评论 0原文

我在一台网络服务器上有两个域。我在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘿看小鸭子会跑 2024-11-23 15:07:00

不会。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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文