将外部域指向子域

发布于 2024-12-11 11:25:13 字数 321 浏览 0 评论 0原文

我试图实现的是一个简单的域,指向我拥有的示例

www.domain.tdl

并提供给用户

username.domain.tdl

,效果很好。

但是,一旦我想要启用域指向(他们在自己的域上创建子域的 CNAME 条目),我就必须为网络服务器中的每个域设置一条记录,然后重新启动它。

我如何使用 Apache 实现这样的构造?
最好的方法是什么?

最好的例子可能是 Google Mail:您可以获得 mail.yourdomain.tl

What I try to achive is a simple domain pointing to example I have

www.domain.tdl

and supply to the users

username.domain.tdl

which works great.

But as soon as I want to enable a domain pointing (they create a CNAME entry on there own domain to the subdomain) I would have to setup a record for each domain in the webserver and restart it after.

How would I achieve such a construct with Apache?
And what's the best way of doing that?

The best example for that is probably Google Mail: you can get mail.yourdomain.tl

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

风柔一江水 2024-12-18 11:25:13

如果虚拟主机中未定义的域指向它,它将自动使用第一个虚拟主机。

因此,如果您确保该网站是第一个虚拟主机,它将自动工作。

If a domain points to it which isn't defined in the vhosts it will automatically use the first vhost.

So if you make sure the website is the first vhost it will automically work.

尐籹人 2024-12-18 11:25:13

如果我理解正确的话,您可以使用一些 bash/sh 脚本来添加新部分/扩展您的 apache2.conf 或 vhosts.conf 。

You can use some bash/sh script to add new part/extend your apache2.conf or vhosts.conf if I understood you correctly.

岁吢 2024-12-18 11:25:13

只要让 Apache 回答所有问题即可,不要通过域来限制它。确保该虚拟主机是该服务器上第一个加载的虚拟主机。您可以通过命名来实现此目的,例如 /etc/apache2/sites-available/0001-myservice

Just have your Apache answer to everything and do not restrict it by domain. Be sure that this vhost is the first one to be loaded on this server. You can achieve this by naming it, e.g. /etc/apache2/sites-available/0001-myservice.

空城缀染半城烟沙 2024-12-18 11:25:13

还有另一个可能的选项:使用通配符子域配置虚拟主机。一样:

<VirtualHost *:80>
    DocumentRoot /www/subdomain
    ServerName www.domain.tld
    ServerAlias *.domain.tld
</VirtualHost>

There are another possible option: configure vhost with wildcard subdomain. Just alike:

<VirtualHost *:80>
    DocumentRoot /www/subdomain
    ServerName www.domain.tld
    ServerAlias *.domain.tld
</VirtualHost>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文