Apache 每个子域都指向同一个目录

发布于 2024-10-16 09:25:45 字数 143 浏览 9 评论 0原文

我在 Apache 上创建一些虚拟主机时犯了一些错误,现在每次我访问 some_random_subdomain.mysite.com 时,如果该子域不存在或者未正确应用,它会重定向到特定目录(该目录已分配给特定目录)子域),我不知道我该怎么做才能阻止它。请提供一些帮助。

I have made something wrong while creating some virtual hosts on Apache and now everytime I go to some_random_subdomain.mysite.com, if this subdomain does not exist or if it is not applied properly it redirects to a specific directory (which is assigned to a specific subdomain) and I don't know what do I have to do to stop it. Some help please.

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

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

发布评论

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

评论(1

猥琐帝 2024-10-23 09:25:45

您是否在任何地方使用过*.domain.com?例如:

<VirtualHost 111.222.33.4>
    ServerName domain.com
    ServerAlias *.domain.com
</VirtualHost>

这将导致虚拟主机用于所有没有虚拟主机的子域。

Have you used *.domain.com anywhere? For example:

<VirtualHost 111.222.33.4>
    ServerName domain.com
    ServerAlias *.domain.com
</VirtualHost>

This would cause the Virtualhost to be used for all subdomains that don't have Virtualhosts.

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