Apache 中的虚拟主机(通配符和静态域)
我有一些奇怪的情况。我想为一个域创建不同的 DirectoryRoot。
example.com -> /目录1 www.example.com -> /dir1
*.example.com -> /dir2
我正在尝试使用 NameVirtualHost 和 ServerAlias 进行设置。你能帮忙吗?
I have some odd situation. I wan to make different DirectoryRoot for one domain.
example.com -> /dir1
www.example.com -> /dir1
*.example.com -> /dir2
I'm trying settings with NameVirtualHost and ServerAlias. Could you help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试这样做......
取自我的工作设置(显然修剪了一点!)
Try doing it like...
Taken from my working setup (obviously trimmed a little!)
尝试一下,您可以使用
apache
的location
指令强制目录根记住第一个
VirtualHost
优先。Try this, you can use
apache
'slocation
directive to force the directory-rootRemember the first
VirtualHost
takes precedence.