搭建本地虚拟主机

搭建本地虚拟主机有利于对建站的加深了解,提高自身的认识层面,而搭建本地虚拟主机也是一件非常简单的事情

一、修改Apache的配置文件  httpd.conf文件

  ctrl+f查找到下面代码

Include conf/extra/httpd-vhosts.conf

  把前面的#去掉

二、修改虚拟主机的httpd-vhosts.conf配置文件

  找到下面代码

#<VirtualHost *:80>                                                #声明端口
#    ServerAdmin webmaster@dummy-host2.example.com
#    DocumentRoot "/Apache24/docs/dummy-host2.example.com"     #定义项目根目录
#    ServerName dummy-host2.example.com                #定义域名
#    ErrorLog "logs/dummy-host2.example.com-error.log"
#    CustomLog "logs/dummy-host2.example.com-access.log" common
#</VirtualHost>

  把前面的#去掉,并根据自身的实际情况配置好端口 项目更目录 虚拟主机的域名即可,下面是本人做的修改

<VirtualHost *:80>
    ServerAdmin webmaster@dummy-host2.example.com
    DocumentRoot "E:/phpStudy/WWW/test"
    ServerName test.com
    ErrorLog "logs/dummy-host2.example.com-error.log"
    CustomLog "logs/dummy-host2.example.com-access.log" common
</VirtualHost>

 三、重启Apache服务器

 四、域名解析 修改hosts文件(一般在 C:\Windows\System32\drivers\etc)

  在最后添加上即可

  

 

 

 

  

posted @ 2018-03-11 20:14  苏沛云  阅读(1674)  评论(0编辑  收藏  举报


感谢您的阅读,如果您觉得阅读本文对您有帮助,请点一下“推荐”按钮。本文欢迎各位转载,但是转载文章之后必须在文章页面中给出作者和原文连接