需要在子域中安装WordPress Multisite

时间:2019-03-12 14:12:07

标签: wordpress wpml wpmu

我的服务器根目录中有一个CodeIgniter网站。该网站确实有很多页面,其中约~2M to ~2.5M个页面具有许多其他功能。然而;现在,我为我的主页开发了一个WordPress多站点,并为另一个开发了12个登陆页面。我已经使用WPML了。现在我需要完成以下结构

domain.com -> My CodeIgniter website.
lp.domain.com -> WordPress multisite main site.
ex1.lp.domain.com to ex11.lp.domain.com -> for my 12 landing page.

现在,当我将WordPress安装迁移到子域时,它将进入重定向循环。

有人可以帮助我提供我可以做到的相同解决方案吗?

提前感谢您的帮助

1 个答案:

答案 0 :(得分:0)

在CI主站点中使用重写(在CI的重写脚本之后),

RewriteEngine On
RewriteCond %{HTTP_HOST} (.*)\.domain\.tld$
RewriteCond %{HTTP_HOST} domain\.tld$
RewriteCond %{HTTP_HOST} ^domain\.tld[NC]
RewriteCond %{HTTP_HOST} ^(.*)\.domain\.tld$    
RewriteCond %{HTTP_HOST} !^(lp|subdom1|sub2dom2)\.domain\.tld$ [NC]

然后永久重定向到

 RewriteRule ^(.*) https://www.domain.tld/%1/$1 [L,R=302]

然后在WP中,

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)$ $1 [L]
RewriteRule . index.php [L]

此处是带有CI的实时示例,https://www.gsunitedtechnologies.com(子域:https://blog.gsunitedtechnologies.com,并且同一主机具有https://beatthedrumfor.com上的多站点wp网络(子域:https:// in.beatthedrumfor。com)