模仿来自另一个域的 iframe
我正在尝试开发一个小型 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过本地 http 服务器对其进行测试(以防万一您正在访问本地文件)。
在您的 http 服务器中定义 2 个不同的虚拟主机。
编辑您的 etc/hosts 文件以添加:
现在您有 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:
So now you have 2 different sites, but running on the same computer.