zoukankan      html  css  js  c++  java
  • 本地机apache配置基于域名的虚拟主机详解

    1.打开apache的httpd.conf文件,找到
    # Virtual hosts
    #Include conf/extra/httpd-vhosts.conf
    这一段把Include conf/extra/httpd-vhosts.conf前面的"#"去掉。

    2.修改位于(win7)c:/windows/system32/drivers/etc/目录下的hosts文件
    增加一段:127.0.0.1    x.acme.com(你用来访问的域名)

    3.我用的是wamp包,所以到c:/wamp/bin/apache/Apache2.2.11/conf/extra目录下
    修改文件httpd-vhosts.conf
    NameVirtualHost默认如下:
    NameVirtualHost *:80

    增加:
    <VirtualHost *:80>
        ServerAdmin x@acme.com    
        DocumentRoot "/var/www/html"
        ServerName x.acme.com    
        ErrorLog "logs/x.acme.com-error.log"
        CustomLog "logs/x.acme.com-access.log" common
    </VirtualHost>

    改好然后重启服务器。
    在浏览器中输入http://x.acme.com就可以到你的目录.

    当然如果你是想在现有的web服务器上增加虚拟主机,那么原来localhost的服务要能用的话,需要在上面的基础上加点东西:
     hosts文件里加上:127.0.0.1  localhost
    并在httpd-vhosts.conf文件里增加:
    <VirtualHost *:80>
        ServerAdmin localhost@xxx.com   
        DocumentRoot "/var/www/"
        ServerName localhost    
        ErrorLog "logs/ localhost-error.log"
        CustomLog "logs/ localhost-access.log" common
    </VirtualHost>

  • 相关阅读:
    【8-21】java学习笔记03
    【每天一点点】
    【8-20】java学习笔记02
    【8-19】java学习笔记01
    【8-18】JS学习01
    【8-17】HTML测试
    Selenium之WebDriverWait
    Selenium之XPATH定位方法
    Fiddler用法
    微服务架构系统的测试
  • 原文地址:https://www.cnblogs.com/shenming/p/4318359.html
Copyright © 2011-2022 走看看