有没有一种方法,以域名映射到一个WordPress 页面 ?
举例来说,如果我有mydomain.com/about/bio和mydomain.com/about/resume,我能映射anotherdomain.com到有关网页,所以我可以用anotherdomain.com/bio和anotherdomain.com/resume?
另外,可我一个子域做到这一点?
使用相同的上面的例子,我可以映射到about.anotherdomain.com mydomain.com/about?
与WordPress,这些都不是物理文件夹。 她们相当固定链接,所以我有麻烦搞清楚如何使这项工作。
我们有一个Plesk控制面板。
感谢您的任何见解,您可以提供!
编辑:
我想映射到URL的不同部分的域可以从不同的供应商进行登记。
为此,可以使用该归档.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]
两种可能性,你可以探索:
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中,并且如果WordPress的提供正确的页面中输入一个URL近似时看到脱身那么好。
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
祝好运!