我正在尝试将网站嵌入我的网站。当您在他们的网页上搜索某些内容时,他们的嵌入网站会通过他们的网页重定向,尽管该网页仍会在我的网页上。任何帮助将不胜感激。我已经与这个网站建立了合作伙伴,他们自己也不知道该怎么做。
很抱歉,这令人困惑。这是一个有帮助的例子
<html>//my site
<header>//my site
</header>//my site
<body>//my site
//where embed website is with their page redirects and search engine
</body>//my site
</html>//my site
当您在他们的网站上搜索或转到他们的页面时,他们的网站上的链接。这样子应该是这样的。
<html>//my site
<header>//my site
</header>//my site
<body>//my site
//new page on the embed site after redirect
</body>//my site
</html>//my site
我可以去的任何想法或地方都可以帮助我解决这个问题。
最佳答案
您可以使用<embed>
标记将网站嵌入另一个网站,如下所示:
<embed src="http://www.example.com" style="width:500px; height: 300px;">
您可以更改高度,宽度和URL以适合您的需求。
<embed>
标记是HTML5引入的用于嵌入网站的最新方法。关于html - 将网站嵌入我的网站,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/62032605/