Drupal 中的多个域
我有一个 Drupal 网站。它的域名是 example.com。我希望域名:mysite.com 和 mywebsite.com 指向 example.com 网站。 如何设置多个域名指向一个网站?
I have a Drupal website. It's domain is example.com. I want domains: mysite.com and mywebsite.com to point to example.com website.
How to setup multiple domains that point to one website?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将 ServerAlias 添加到该虚拟主机的 Apache 配置中。这是一种方法。您还可以使用 DNS 转发域。
You can add ServerAlias to your Apache conf for that virtual host. That is one way. You could also forward the domains with DNS.
我在 .htaccess 中使用了 301 重定向。
我将这两行添加到 Drupal 根目录中的 .htaccess 文件中:
现在 www.mysite.com 转到 www.example.com
我还在 Plesk Panel 中添加了域别名。
多谢!
I used 301 redirect in .htaccess.
I added thes two lines to .htaccess file in Drupal root:
Now www.mysite.com goes to www.example.com
I also added Domain Aliases in Plesk Panel.
Thanks a lot!
DomainAccess 模块是您的朋友。虽然在这种情况下它可能有点矫枉过正,但如果您想要专业化(例如根据您所在的域更改标题或主题),它就会为您提供帮助。
DomainAccess module is your friend here. While it's probably overkill in this case, it'll be there for you if you ever want to specialize (like change the title or theme based on what domain you're on).