12

所以我想做的是在我的网站上创建一个子域,然后让它加载一个外部网站,而不是真正去那个网站。例如:

google.mydomain.com 加载 google.com,但 URL 栏显示为 google.mydomain.com。

我该怎么做呢?

我试过这个,但无法弄清楚。

试:

框架

  1. 我希望页面占据每个人计算机的整个屏幕。我可以将其设置为 100% 而不是 x 像素数量吗?

  2. 我想删除滚动条,但它说不支持。

4

3 回答 3

18

您可以使用 iframe 或 file_get_contents();

框架:

<iframe src="http://google.com" style="width: 100%; height: 100%;">

文件获取内容():

<?php
echo file_get_contents('http://google.com');
?>

使用 file_get_contents(),您需要注意使用相对 URL 获取的网站,这会破坏 CSS、图像、Javascript 等。

于 2013-04-07T18:45:46.717 回答
3

您将无法使用 php 的 include 函数,因为这不是驻留在您服务器上的资源。

您可以探索的一个选项是将所有内容作为 iframe 的内容加载:有关 iframe html 元素的一些详细信息,请参见http://www.w3schools.com/tags/tag_iframe.asp

于 2013-04-07T18:36:34.250 回答
0
  • html5 现在不支持 iframe
  • 它也适用于html5
  • 易于添加或删除

例子:

 <body onload="window.location.href='https://www.google.com/'"> </body>
于 2018-03-17T19:37:05.750 回答