私はポート8080で2つの仮想ホストを処理するApacheサーバーを持っています.1つはプライベート(localhost)で、もう1つはパブリック(インターネット)です。プライベート仮想ホストは正常に動作しますが、パブリックリクエストはすべてのパブリックリクエストをローカルホストにリダイレクトし続けます。私は何が間違っているのか分かりません。助けてください!Apache 2.4でWAMPを使用してパブリック仮想ホストを追加する方法
# Virtual Hosts
<VirtualHost *:8080>
ServerName localhost
DocumentRoot c:/wamp64/www
<Directory "c:/wamp64/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>
<VirtualHost *:8080>
ServerName mydomain.com
DocumentRoot c:/wamp64/www/App
<Directory "c:/wamp64/www/App/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
DirectoryIndex index.html index.php
</VirtualHost>
#
また、これは、Windows Server 2012上のWAMP/Magentoのを実行し、Azureの中でホストされている。以下は
httpd-vhost.conf
ファイルです。どうもありがとう!