1

私の英語レベルについて申し訳ありません。

いろいろ調べた結果、「.htaccess」を使ってサブドメインフォルダへのリダイレクトを取得できることがわかりました。これで問題ありません。

Drupal では、「/sites/sub.example.com/」にサブドメインごとにフォルダーを作成し、デフォルト フォルダー「/sites/default/default.setting.php」から「default.settings.php」をコピーして、名前を変更する必要があります。 「settings.php」に、その後、同じファイルで「$databases」変数を有効にします。完了したら、ワイルドカードを追加して「hosts」ファイルを変更する必要があります。

まあ、私はこれをすべて「自動化」する必要がありますが、それがより難しいかどうかはわかりません。書き込み権限でサーバーの安全性を保持するか、別の方法を試すことが重要なので、誰かが私にアドバイスすることができます.

OSX と Drupal 7.x (最近のリリース) に取り組んでいます

どうもありがとうございました。

4

1 に答える 1

1

For each site that you want to use separate database, create own sites/ directory with settings.php. For example, if you want to have one database for example.com, another one for sub1.example.com and third one for sub2.example.com, all using same code base, setup your files like this:

sites/example.com/settings.php

sites/sub1.example.com/settings.php

sites/sub2.example.com/settings.php

each settings.php using different database credentials. Read more here - https://drupal.org/documentation/install/multi-site

Also, if you want to automate this and if there is supposed to be bigger number of sites to be managed, consider deploying aegir - http://www.aegirproject.org.

I hope I understood your question correctly.

于 2013-11-30T23:47:14.420 に答える