Drupal 中的多个域

发布于 2024-10-17 20:45:49 字数 107 浏览 1 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(3

笑看君怀她人 2024-10-24 20:45:49

您可以将 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.

墨小沫ゞ 2024-10-24 20:45:49

我在 .htaccess 中使用了 301 重定向。
我将这两行添加到 Drupal 根目录中的 .htaccess 文件中:

RewriteCond %{HTTP_HOST} ^www\.mysite\.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]

现在 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:

RewriteCond %{HTTP_HOST} ^www\.mysite\.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]

Now www.mysite.com goes to www.example.com
I also added Domain Aliases in Plesk Panel.

Thanks a lot!

梦太阳 2024-10-24 20:45:49

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).

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