3

我目前有两台完全不同的服务器。

一个是博客服务器,另一个是 rails webapp。

我希望网址像:

myserver.com      -> goes to the blog
www.myserver.com  -> goes to the blog
*.myserver.com    -> goes to the webapp

目前我正在这样做:(它不工作)

A      blog   <webapp server ip>
A      @      <blog server ip>
CNAME  www    @
CNAME  *      @

这是我的数字海洋 DNS 设置中的设置

如果这是不可能的,我该如何做这个布局:

blog.myserver.com -> goes to the blog
*.myserver.com    -> goes to the webapp
4

1 回答 1

6
A  @      blog.server.ip
A  www   blog.server.ip
A  *      webapp.ip 

应该做你想做的。在大多数情况下,通配符用作总称,因此如果存在现有记录,它将使用它。

如果他们调用指向相同的 IP 地址,你可以这样做

A  @      server.ip
CNAME *   @

然后使用您的网络服务器将虚拟主机指向正确的位置。

于 2014-03-11T17:31:11.300 回答