06/05/28 18:28:18 .net
名前ベースの仮想ホストの設定で
<VirtualHost *:80>
ServerAdmin info@hoge.com
DocumentRoot c:/web
ServerName www.hoge.com
ErrorLog logs/dummy-host.example.com-error_log
CustomLog logs/dummy-host.example.com-access_log common
</VirtualHost>
<VirtualHost *:80>
ServerAdmin info@hogeB.com
DocumentRoot c:/web2
ServerName www.hogeB.com
ErrorLog logs/dummy-host.example.com-error_log
CustomLog logs/dummy-host.example.com-access_log common
</VirtualHost>
<VirtualHost 219.111.1.77>
ServerAdmin info@hogeC.com
DocumentRoot c:/web3
ServerName www.hogeC.com
ErrorLog logs/dummy-host.example.com-error_log
CustomLog logs/dummy-host.example.com-access_log common
</VirtualHost>
としているんですが、どのアドレスでアクセスしてもメインホストしか
表示されません。
この場合、何が原因として考えられますか?
教えてください。