Subdomain
主域到一台伺服器,所有子域到另一台伺服器
我希望在 Server1 中託管我的主域,例如:
example.com
.並將所有子域託管在另一台伺服器 Server2 中。我將動態創建子域。
例如:
dynamic_subdomain.example.com
我知道如何處理動態子域。我只想知道如何將主域指向 Server1 並將所有子域指向 Server2
我無法理解如何指出我的 A 記錄來實現這一點。
Host Points To www 23.229.190.135 @ 23.239.28.64
目前我無法進入 Main-Domain/Server1
領域:
raotechsolutions.com Server1: 23.229.190.135 Server2: 23.239.28.64
別名:
Host Points To * @ cpanel www e email.secureserver.net email email.secureserver.net ftp @ imap imap.secureserver.net mail pop.secureserver.net pda mobilemail-v01.prod.mesa1.secureserver.net pop pop.secureserver.net smtp smtp.secureserver.net webdisk @ webdisk.admin @ webmail webmail.secureserver.net whm @
您的 DNS 沒有問題:
[me@risby ~]$ dig www.raotechsolutions.com [...] ;; QUESTION SECTION: ;www.raotechsolutions.com. IN A ;; ANSWER SECTION: www.raotechsolutions.com. 570 IN A 23.229.190.135
和
[me@risby ~]$ dig foo.raotechsolutions.com [...] ;; QUESTION SECTION: ;foo.raotechsolutions.com. IN A ;; ANSWER SECTION: foo.raotechsolutions.com. 3556 IN CNAME raotechsolutions.com. raotechsolutions.com. 556 IN A 23.239.28.64
當您嘗試訪問這些站點時,您還沒有告訴我們到底出了什麼問題,因此很難對此發表評論,特別是考慮到您保證您的 Web 伺服器設置沒有任何問題。當我將瀏覽器指向http://www.raotechsolutions.com時,出現錯誤
頁面未正確重定向
Firefox 檢測到伺服器正在以永遠不會完成的方式重定向對該地址的請求。
對我來說,這看起來很像 Web 伺服器配置錯誤。但是您向我們保證這很好,並且由於您的問題是詢問如何以特定方式設置您的 DNS,那麼我可以告訴您,您已經設法做到了。
編輯:您現在提出的問題不在您的原始問題中。如果您不想
raotechsolutions.com.
解析到伺服器 2,我建議您停止發布完全符合此要求的記錄:[me@risby ~]$ dig raotechsolutions.com [...] ;; QUESTION SECTION: ;raotechsolutions.com. IN A ;; ANSWER SECTION: raotechsolutions.com. 114 IN A 23.239.28.64
如果您停止該記錄,您還需要將子域的“catchall”記錄從 CNAME 更改為也指向的 A 記錄
23.239.28.64
,否則您的所有子域將停止重定向到伺服器 2。編輯2:好的,我可以看到我必須一步一步地做到這一點。
- 刪除 A 記錄
@ 23.239.28.64
和 CNAME 記錄* @
。- 插入 A 記錄
@ 23.229.190.135
,sub 23.239.28.64
, 和* 23.239.28.64
- 目前指向 的任何其他 CNAME
@
將其改為指向 ,sub
除非您希望ftp
、whm
等指向 server1,在這種情況下保持它們不變。