Drupal 域重定向

Drupal Domain Redirection

我们有两个域:www.example.com 和 www.example.org。两者都指向同一个站点。但是,我们希望一切都指向 .org。我们在 Media Temple 托管的 LAMP 服务器上使用 运行 Drupal。

我们现在开始遇到问题,因为我们的 .com SSL 证书已过期,所以任何访问 .com 网站的人都会在 Chrome 等

中例行收到可怕的消息

如果有人去https://www.example.com in google, they get nicely directed to http://www.example.org,我们怎样才能做到?

您可以通过多种方式执行此操作。

.htaccess

RewriteEngine On
Redirect 301 / https://www.exmaple.org

在 PHP 文件中

header("HTTP/1.1 301 Moved Permanently");
header("Location: https://www.example.org");
header("Connection: close");

你可以试试这个模块:

https://www.drupal.org/project/domain_301_redirect

这是指向此站点的所有其他域将被 301 重定向到的域。此值还应包括方案(http 或 https)

希望能帮到你!