私は多くの投稿を読み、次のように同じ IP アドレスの 2 つのサイトに WAMP を構成しました (httpd.conf 抽出):
#Tell Apache to identify which site by name
NameVirtualHost *:80
#Tell Apache to serve the default WAMP server page to "localhost"
<VirtualHost 127.0.0.1>
ServerName localhost
DocumentRoot "C:/wamp/www"
</VirtualHost>
#Tell Apache configuration for 1 site
<VirtualHost 127.0.0.1>
ServerName client1.localhost
DocumentRoot "C:/wamp/www_client1"
<Directory "C:/wamp/www_client1">
allow from all
order allow,deny
AllowOverride all
</Directory>
DirectoryIndex index.html index.php
</VirtualHost>
#Tell Apache configuration for 2 site
<VirtualHost 127.0.0.1>
ServerName client2.localhost
DocumentRoot "C:/wamp/www_client2"
<Directory "C:/wamp/www_client2">
allow from all
order allow,deny
AllowOverride all
</Directory>
また、Windows ホスト ファイルを変更して 127.0.0.1 client1.localhost などを追加しました。ただし、WAMP サービスを再起動すると、//client1.localhost と //client2.localhost は c:\wamp\www の既定のサイトに移動します。フォルダ。
どんな助けでも本当に感謝しています。