Expected:
A visit to news.autobahncph.dk loads content from leadautomation.dk
- The url should not change once the content is loaded
Example:
Let's say that a user visits: news.autobahncph.dk/page-name
The user should see the content from: leadautomation.dk/page-name
And the URL should still be the same: news.autobahncph.dk/page-name
Any help would be much appreciated!
What have I tried?
Using frameset:
- I managed to get the page at news.autobahncph.dk load the content from leadautomation.dk using an index.html in root of news/ with the following code:
<frameset rows="100%,*" border="0" frameborder="0">
<frame name="__main" src="http://leadautomation.dk/page-name/" noresize frameborder="0">
</frameset>
BUT:
The url does not include the page name
External links do not work, because some sites don't show their page in a frame.
So, how to solve this without a frame?