zoukankan      html  css  js  c++  java
  • wamp配置虚拟主机

    首先

    1  编辑httpd.conf,查找Include conf/extra/httpd-vhosts.conf,把前面注释符号“#”删掉。

    2  找到安装目录下wamp\bin\apache\Apache2.2.17\conf\extra 下 httpd-vhosts.conf这个文件

    3 把 里面的内容清空掉 换成下面的内容

    <VirtualHost 127.0.0.1:80>
        DocumentRoot E:/htdocs/dz
       ServerName www.dz.com
     DirectoryIndex index.html index.htm default.htm index.php default.php index.cgi default.cgi index.pl default.pl index.shtml


    <Directory "E:/htdocs/dz">
        Options Indexes FollowSymLinks
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
    </VirtualHost>
    <VirtualHost 127.0.0.2:80>
        DocumentRoot E:/htdocs/cms
       ServerName www.dd.com

     DirectoryIndex index.html index.htm default.htm index.php default.php index.cgi default.cgi index.pl default.pl index.shtml

    <Directory "E:/htdocs/cms">
        Options Indexes FollowSymLinks
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
    </VirtualHost>
    <VirtualHost 127.0.0.3:80>
        DocumentRoot E:/htdocs/dgcms
       ServerName www.dg.com

     DirectoryIndex index.html index.htm default.htm index.php default.php index.cgi default.cgi index.pl default.pl index.shtml


    <Directory "E:/htdocs/dgcms">
        Options Indexes FollowSymLinks
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
    </VirtualHost>
    <VirtualHost 127.0.0.4:80>
        DocumentRoot E:/htdocs/phpmyadmin
       ServerName www.myadmin.com

     DirectoryIndex index.html index.htm default.htm index.php default.php index.cgi default.cgi index.pl default.pl index.shtml


    <Directory "E:/htdocs/phpmyadmin">
        Options Indexes FollowSymLinks
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
    </VirtualHost>

    4 修改C:/WINDOWS/system3/drivers/etc/host这个文件,用记事本打开,加上如下内容:
      127.0.0.1  www.maypp.com
    5然后重启apache,在浏览器里面输入www.dd.com,看看访问到的内容  

  • 相关阅读:
    C# 之泛型详解
    C#方法的六种参数,值参数、引用参数、输出参数、参数数组、命名参数、可选参数
    在C#中理解和实现策略模式的绝对入门教程
    负载均衡的原理
    C#多线程编程
    深入研究虚幻4反射系统实现原理(二)
    深入研究虚幻4反射系统实现原理(一)
    虚幻4属性系统(反射)翻译
    UE4中使用数据表(Data Table)
    UE4 自定义物理表面类型(Surface Type)
  • 原文地址:https://www.cnblogs.com/kakaxi/p/2092940.html
Copyright © 2011-2022 走看看