Windows

在 localhost 和使用者 dns 上創建子域

  • November 6, 2010

我的 ISP 為我提供了一個使用者 dns,例如“user”.ddns.“providersite.com”。我在本地主機上創建了“img”子域。我已經編輯了win主機文件,添加

127.0.0.1 img.localhost

我已經將它添加到 apache 虛擬主機

<VirtualHost *:80>
ServerName img.localhost
DocumentRoot "C:/www/web/img"
DirectoryIndex index.php index.html index.htm index.shtml
</VirtualHost>

那麼我可以讓 ot 在網際網路上工作 - img.“user”.ddns.“providersite.com” 嗎?甚至可能嗎?

您可能會要求您的 ISP 將萬用字元子域放在"user".ddns.providersite.comlike*.user.providersite.com

但這完全取決於您的提供商來解析域。如果我沒記錯的話,還有其他包含此功能的 DDNS 提供商。我記得的(德國)提供商是Servermaster。你可以試試看那裡

引用自:https://serverfault.com/questions/198911