让域名显示在另一个域上托管的页面

时间:2016-04-14 23:56:21

标签: dns

我需要一个域 - 无需托管 - 从另一台服务器调出内容。即我可以访问域名的DNS,但没有别的。

如何制作在我的服务器上托管的网页 - 在我的客户端加载时#网址显示?

为了澄清,我想要一位访客:

  1. 输入sl.wellnessandyourself.com
  2. 页面www.ceramiclion.com/drops/index.html显示
  3. 对于sl.wellnessandyourself.com仍然是用户浏览器中的网址。
  4. 我听到了对此的不同意见。像Weebly这样的网站能够做到这一点。我怎么能这样做?

2 个答案:

答案 0 :(得分:0)

已编辑:

请参阅上面关于CNAME的评论,这是一个比我刚才提供的更好的解决方案。

我不完全确定,但我认为真正做到这一点的唯一方法是使用嵌入在您自己的页面代码中的IFRAME标记:



<html>
  <head>
    <title>IFRAME Example</title>
  </head>
  <body>

    <iframe style="min-width: 100%; min-height: 100%; outline: none;" src="http://www.ceramiclion.com/drops/index.html" />

  </body>
</html>
&#13;
&#13;
&#13;

这种回归到HTML格式的框架中。啊,回忆。

答案 1 :(得分:0)

为什么不使用CNAME?这几乎就是它的用途。您只需编辑域名的DNS记录即可。显然,你必须能够访问这些,但是,这很简单。不需要托管。

您将sl.wellnessandyourself.com的CNAME设置为www.ceramiclion.com/drops,它应该按您的需要工作。

以下是更多信息:

https://serverfault.com/questions/65712/using-cname-to-point-to-another-domain-to-save-ip-addresses

https://support.dnsimple.com/articles/cname-record/