2011-10-25 186 views
4

我想要做的是將一個網站嵌入我的網站。當你在他們的頁面上搜索某些內容時,他們的嵌入網站會重定向到他們的頁面,儘管它仍然會在我的網頁上。任何幫助將不勝感激。我已經與這個網站合作,他們不知道如何自己做。將網站嵌入我的網站

對不起,如果這是令人困惑。這是一個例子,如果它有幫助

<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 

任何想法或地方,我可以去幫助我解決這個問題。

+5

看看[frames](http://www.w3.org/TR/html4/present/frames.html)也許吧? – Clive

回答

4

您可能想檢查HTML frames,它可以完全符合您的要求。但是他們被認爲是過時的。

+2

如果4年前幀已經過時,是否有可能以更新的方式更新此答案? –

9

從其他網站在iframe中Put含量

<iframe src="/othersiteurl" width="100%" height="300"> 
    <p>Your browser does not support iframes.</p> 
</iframe> 
+0

非常有用,謝謝。我只是在客戶的網站上使用了這種編碼,它的工作非常完美。 –

10

您可以使用<embed>標籤嵌入網站到另一個網站,像這樣:

<embed src="http://www.example.com" style="width:500px; height: 300px;"> 

你可以改變高度,寬度和網址以滿足您的需求。

<embed>標記是嵌入網站的最新方式,因爲它是在HTML5中引入的。