0
This網址似乎聲稱,這是不可能的。但是,該網站上的解決方法也無效,並且信息已過時。所以我的問題是...爲什麼在Drupal 8,這項工作,當你把它放在sites.php文件:如何在Drupal 8中使用多站點的IP地址?
$sites = array(
// URL ==> path
'test.localhost' => 'default',
'test2.localhost' => 'somepath',
);
但不是這樣的:
$sites = array(
// URL ==> path
'test.localhost' => 'default',
'127.0.0.1' => 'somepath',
);
而且我將如何使它工作?