Different name servers for different subdomains

后端 未结 1 1665
野性不改
野性不改 2021-02-20 05:44

Let\'s say I have a website example.com which I bought via a common domain registry nomcheap.com.

I want all traffic to a specific subdomain

相关标签:
1条回答
  • 2021-02-20 06:18

    To point a subdomain to a name servers you need to create an NS record for the subdomain:

    app.example.com NS ns1.appserver.com

    This will make all queries go to ns1.appserver.com

    *.example.com NS ns1.squaresites.com

    The second record should catch all subdomains that don't have their own records (of any kind).

    0 讨论(0)
提交回复
热议问题