我需要创建一个复杂的WordPress驱动的设置,我想从单个代码库运行它。
我的设置由于许多因素而变得复杂。首先,我已经有运行网站主页的软件,所以我无法在域的根目录下安装WordPress。
example.com // <- site powered by a non-WordPress engine
为此,我想添加一个在子目录结构中运行的多站点安装:
example.com/multisite/ // <- multi-site installation of WordPress
example.com/multisite/site1
example.com/multisite/site2
(...)
到目前为止,这很容易做到。当我还想用这个WordPress安装为一些子域供电时,会出现复杂性:
site3.example.com // <- subdomain sites I would also like to power with WordPress
site4.example.com
(...)
如果有人能告诉我这是否可行,我将不胜感激。如果可能的话,您是否成功地启动并运行了类似的程序?正确的方法是什么?其他插件是否有用?
我会感激你的帮助。