多站点安装上的非WordPress子域

时间:2018-10-01 作者:Danielh

我有Wordpress multisite,我想从multisite中排除一个子域。我有点困惑。Wordpress多站点目录:/var/www/XYZ(domain example.com,subdomain:1subdomain.example.com)我要排除目录的网站:/var/www/ABC(subdomain:2subdomain.example.com

如何排除2子域。实例来自多站点的com?仍有重定向。。

谢谢你的帮助!

1 个回复
SO网友:Greg Much

在里面htaccess您必须访问(确保将目录设置正确)!^//ABC//em>)

RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?2subdomain.example.com$
RewriteCond %{REQUEST_URI} !^/../ABC/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /ABC/$1
RewriteCond %{HTTP_HOST} ^(www.)?2subdomain.example.com$
RewriteRule ^(/)?$ ABC/index.php [L] 

https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory

结束

相关推荐

使用.htaccess或挂钩重写URL

我有自定义模板,在该自定义模板中,我根据下拉列表过滤数据。我正在使用GET方法过滤这些数据。如果浏览器点击此url:-http://localhost/about-fruad-new/search-providers/?industry%5B%5D=financial_services 我想用这个url替换它,http://localhost/about-fruad-new/search-providers/?financial_services 到目前为止我试过的代码,functio