Reputation: 8945
I would like to embed a few local apps into a single website.
The code below successfully loads external sites but does not load apps running on the local network.
For example http://app.local
loads when accessed from the browser directly but does not load when in the iframe.
html>
<body>
<iframe src="http://app.local" width="100%" height="100%"></iframe>
</body>
</html>
Why is this happening and how can I address it?
Upvotes: 0
Views: 395