嗨,我正在学习如何在Mac上通过mamp使用虚拟主机。 即使我在httpd-vhosts.conf文件中指定了两个不同的目录,我也不明白为什么我有两个指向同一目录的testssl.local和testssl2.local主机。 这些是我的配置。
私有/ etc /主机
a_f
httpd-vhosts.conf
127.0.0.1 testssl1.local
127.0.0.1 testssl2.local
httpd-ssl.conf
<VirtualHost testssl.local:80>
ServerAdmin testssl.local
DocumentRoot
"/Applications/MAMP/htdocs/testssl/public"
ServerName testssl.local
</VirtualHost>
<VirtualHost testssl2.local:80>
ServerAdmin testssl2.local
DocumentRoot
"/Applications/MAMP/htdocs/testssl2/public"
ServerName testssl2.local
</VirtualHost>
我在哪里做错了? 格拉西