第一步,在你的主站sites下建立aaa和bbb文件,即xampp/htdocs/drupal/sites/aaa和xampp/htdocs/drupal/sites/bbb。把sites/default中的default.settings.php复制到aaa和bbb中,并分别改名为settings.php
第二步,分别打开aaa和bbb的settings.php,找到
去掉前边的#,改为:
以及
# $base_url = 'http://www.example.com'; // NO trailing slash!
去掉前边的#,改为:
$base_url = 'http://aaa'; // NO trailing slash!
以及
$base_url = 'bbb'; // NO trailing slash!
第三步,打开xampp/apache/conf/extra/httpd-vhosts.conf,在最后的部分添加几个virtual host,如下代码:
NameVirtualHost *:80
DocumentRoot "c:/xampp/htdocs/drupal" #这里是你drupal主站的绝对路径
ServerName aaa
DocumentRoot "c:/xampp/htdocs/drupal" #这里是你drupal主站的绝对路径
ServerName bbb
重启apache服务
第四步,打开C:\Windows\System32\drivers\etc,打开hosts文件(你懂得)
添加:
127.0.0.1 aaa
127.0.0.1 bbb
添加:
127.0.0.1 aaa
127.0.0.1 bbb
哦了,在浏览器输入 http://aaa 和 http://bbb即可安装这两个字站点啦