带子目录的 Drupal 多站点设置
我有一个具有单个代码库的多站点设置。 是否可以将我的站点目录设置为带有子文件夹: mysite.com 在 /home/drupal/sites/mysite.com
othersite1.com 在 /home/drupal/sites/cluster1/othersite1.com
othersite2.com 在 /home/drupal/sites/cluster1/othersite2.com
othersite3.com /home/drupal/sites/cluster2/othersite3.com
othersite4.com 在 /home/drupal/sites/cluster2/othersite4.com
我正在尝试找到一种方法来组织我的所有站点。
谢谢
I have a multi-site setup with a single codebase.
Is it possible to have my sites directory set up like this with sub folders:
mysite.com in /home/drupal/sites/mysite.com
othersite1.com in /home/drupal/sites/cluster1/othersite1.com
othersite2.com in /home/drupal/sites/cluster1/othersite2.com
othersite3.com in /home/drupal/sites/cluster2/othersite3.com
othersite4.com in /home/drupal/sites/cluster2/othersite4.com
I'm trying to find a way to organize all my sites.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 Drupal 7,则可以执行此操作。sites 文件夹中有一个名为sites.php 的文件,您可以使用该文件为站点路径添加别名。如果您使用< Drupal 7 您可以按照您的建议创建目录并创建符号链接
Drupal 查找站点文件夹的方式在 settings.php 中有解释,请阅读该内容。
You can do this if you are using Drupal 7. There is a file called sites.php in sites folder that you can alias the paths to your sites. If you are using < Drupal 7 you can make the directories as you propose and create symbolic links
The way Drupal finds the site folder is explained in settings.php, read that.