我在 Windows 8.1 计算机上运行本地 Apache 开发服务器。假设我在本地 Apache 服务器上设置了两个虚拟主机:
http://localhost/
指着C:\htdocs\localhost\
http://otherdomain/
指着C:\htdocs\myTestWebsite\
localhost
当远程用户在其浏览器中输入我的 IP 地址时,浏览器当然会返回 的内容。
otherdomain
我是否可以在我的计算机上配置一些东西来返回有人浏览我的 IP 地址时的内容?
答案1
终于明白了!
我将中的DocumentRoot
和<Directory>
指令更改httpd.conf
为,并在我的 IP 地址中C:\htdocs\myTestWebsite
给出相应的虚拟主机,即。otherdomain
httpd-vhosts.conf
<VirtualHost 10.0.0.5:80>
作品!