带子目录的 Drupal 多站点设置

发布于 2024-10-13 11:44:14 字数 405 浏览 5 评论 0原文

我有一个具有单个代码库的多站点设置。 是否可以将我的站点目录设置为带有子文件夹: 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空心↖ 2024-10-20 11:44:14

如果您使用的是 Drupal 7,则可以执行此操作。sites 文件夹中有一个名为sites.php 的文件,您可以使用该文件为站点路径添加别名。如果您使用< Drupal 7 您可以按照您的建议创建目录并创建符号链接

 ln -s /home/drupal/sites/cluster1/othersite1.com othersite1.com 

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

 ln -s /home/drupal/sites/cluster1/othersite1.com othersite1.com 

The way Drupal finds the site folder is explained in settings.php, read that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文