如何在Windows 7上的xampp中创建虚拟主机

时间:2017-07-15 13:19:25

标签: xampp

如何在Windows 7上的xampp中创建虚拟主机?

我首先在C:\ xampp \

安装XAMPP

我希望在我的计算机上将http://localhost/mywebsite称为http://mywebsite.localhost.com

1 个答案:

答案 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文件中进行设置。