如何在Windows 7上的xampp中创建虚拟主机?
我首先在C:\ xampp \
安装XAMPP我希望在我的计算机上将http://localhost/mywebsite
称为http://mywebsite.localhost.com
。
答案 0 :(得分:0)
是的,这是可能的。您希望配置类似于:
<VirtualHost *:80>
ServerName mywebsite.localhost.com
DocumentRoot C:\your\web\folder
</VirtualHost>
您需要将此附加到现有配置中,或创建新的配置文件并将其包含在主配置文件中。
如果文件C:/xampp/apache/conf
包含来自XAMPP的Apache指令,那么是的,它将在这里工作。
确保在执行ping mywebsite.localhost.com
时获得本地IP地址。如果您没有收到回复,则表示您需要在hosts
文件中进行设置。