2

有没有办法将域名映射到 WordPress页面

例如,如果我有 mydomain.com/about/bio 和 mydomain.com/about/resume,是否可以将 anotherdomain.com 映射到 about 页面,以便使用 anotherdomain.com/bio 和 anotherdomain.com/resume?

另外,我也可以用子域来做吗?

使用上面相同的示例,我可以将 about.anotherdomain.com 映射到 mydomain.com/about 吗?

使用 WordPress,这些不是物理文件夹。它们是非常固定的链接,所以我很难弄清楚如何使这项工作。

我们有一个 Plesk 控制面板。

感谢您提供的任何见解!

编辑:

我想映射到 URL 不同部分的域可能是从不同的提供商那里注册的。

4

3 回答 3

2

您可以使用该.htaccess文件来实现这一点....

只需将您的域名的 A 记录指向您的域。现在执行以下操作...

RewriteCond %{HTTP_HOST} ^(www.)?mydomain.com
Rewriterule ^(.*)$ http://mydomain.com/about/bio [L]

RewriteCond %{HTTP_HOST} ^(www.)?myresumedomain.com
Rewriterule ^(.*)$ http://myresumedomain.com/about/resume [L]

RewriteCond %{HTTP_HOST} ^(www.)?anotherdomain.com
Rewriterule ^(.*)$ http://anotherdomain.com/bio [L]
于 2012-12-15T13:46:44.753 回答
1

您可以探索两种可能性:

A/使用 plesk(或其他注册商),您可以尝试通配符重定向,例如:

anotherdomain.com -> mydomain.com/about  // with "wildcard" set to "yes".

B/如果失败,您可以创建一个简单的重定向(anotherdomain.com -> mydomain.com),然后在 WordPress(假设它位于 mydomain.com)中,使用重定向插件手动重定向单个 URL 。

您将创建单独的规则,例如:

anotherdomain.com/bio -> mydomain.com/about/bio

C/最后,WordPress 已经非常擅长重定向损坏的链接,您可能只需将 anotherdomain.com 重定向到 mydomain.com 并在输入近似 URL 时查看 wordpress 是否提供正确的页面即可。

anotherdomain.com -> mydomain.com   // this is the redirect you create
when people type anotherdomain.com/bio, WP might serve mydomain.com/about/bio auto-magically

祝你好运!

于 2012-12-13T20:59:00.660 回答
0

如果是我,我会做两种方式:

  1. 域转发 domain1 -> domain2/about-page
  2. 创建一个 index.html 并在 domain1 上创建一个子文件夹(例如:domain1.com/about),然后链接到它。- Index.html 将使用 iframe 调用 domain2/about。
于 2012-12-16T08:46:22.283 回答