模仿来自另一个域的 iframe

发布于 2024-09-14 00:10:31 字数 165 浏览 5 评论 0原文

我正在尝试开发一个小型 Web 应用程序,其中包含一个使用来自另一个域的 iframe 的 Web 应用程序。我正在尝试在本地计算机上对此进行测试,为此我需要模仿 iframe 来自另一个域(虽然它实际上与其他 Web 应用程序 - 我的计算机位于同一域上)。这可以做到吗?如果是这样,怎么办?

谢谢

I am trying to develop a small web application which will consist of one web applicaiton using an iframe from another domain. I am trying to test this on my local machine, and for this I need to imitate as if the iframe is coming from another domain (while it's actually on the same domin as the other web application - my computer). Can this be done? If so, how?

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

浊酒尽余欢 2024-09-21 00:10:31

通过本地 http 服务器对其进行测试(以防万一您正在访问本地文件)。

在您的 http 服务器中定义 2 个不同的虚拟主机。

编辑您的 etc/hosts 文件以添加:

127.0.0.1 domain1.com 
127.0.0.1 domain2.com

现在您有 2 个不同的站点,但在同一台计算机上运行。

Test it through a local http server (just in case your were accesing to the local files).

Define 2 different vhosts in your http server.

Edit your etc/hosts file to add:

127.0.0.1 domain1.com 
127.0.0.1 domain2.com

So now you have 2 different sites, but running on the same computer.

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