我可以使用WP的内置域映射与安装在子域上的WP吗?

时间:2017-04-27 作者:Steve

我在子域上安装了WP MU,my.example.com.

当我使用WP的内置域映射时,当我尝试查看网络站点的主页时,我会收到404,例如:www.example2.org.

我可以将WP的内置域映射与安装在子域上的WP一起使用吗?

1 个回复
SO网友:Josh Murray

为了解决您的问题,假设您使用的是Apache web服务器,请将其粘贴到.htaccess (the.htaccess 在子域(my)目录中):

RewriteEngine On
RewriteBase /
RewriteRule ^index\\.php$ - [L]

# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^(.*\\.php)$ wp/$1 [L]
RewriteRule . index.php [L]
完成后,转到DNS设置并为域设置通配符DNS条目。这基本上是对Apache说的:

“如果有人来到这个(子,)子域,这就是它的IP。

xxx。xxx。xxx。xxx A*。我的实例com公司

这应该行得通。就像对我一样。

<小时>EDIT: OP编辑了他的问题。这个答案可能是也可能不是上述问题的解决方案,尽管这将解决通配符子域WordPress多站点安装的大多数问题。

相关推荐

Subdomains to pages

嗨,我在wordpress上有一个网站,有2个页面,我想把它转换成子域。让我的网站在http://www.domain.com 有两页http://www.domain.com/page1 和http://www.domain.com/page2我想让他们在http://page1.domain.com &;http://page2.domain.com 分别地此外,我可能有子页面到第1页,我想访问使用主页的子域。我是说如果http://www.domain.com/page1/subpage1 是