zoukankan      html  css  js  c++  java
  • wamp修改多站点配置

    本文介绍如果在wamp中修改配置支持多站点。

    第1步,修改httpd.conf,增加8080端口的监听

    #Listen 12.34.56.78:80
    Listen 80
    Listen 8080

    第2步,修改virtual hosts的配置,同样在httpd.conf这个文件中。

    # Virtual hosts 
    #Include conf/extra/httpd-vhosts.conf 
    #修改为 
    # Virtual hosts 
    Include conf/extra/httpd-vhosts.conf

    第3步,增加虚拟主机配置,修改httpd-vhosts.conf文件。

    #
    # Use name-based virtual hosting.
    #
    NameVirtualHost *:80
    NameVirtualHost *:8080

    #
    # VirtualHost example:
    # Almost any Apache directive may go into a VirtualHost container.
    # The first VirtualHost section is used for all requests that do not
    # match a ServerName or ServerAlias in any <VirtualHost> block.
    #
    <VirtualHost *:80>
    ServerAdmin webmaster@dummy-host.example.com
    DocumentRoot "C:/wamp/www/"
    ServerName dummy-host.example.com
    ServerAlias www.dummy-host.example.com
    ErrorLog "logs/dummy-host.example.com-error.log"
    CustomLog "logs/dummy-host.example.com-access.log" common
    <Directory "C:/wamp/www/">
    Options Indexes FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
    </Directory>
    </VirtualHost>

    <VirtualHost *:8080>
    ServerAdmin webmaster@dummy-host.example.com
    DocumentRoot "C:/wamp/www2/"
    ServerName dummy-host.example.com
    ServerAlias www.dummy-host.example.com
    ErrorLog "logs/dummy-host.example.com-error.log"
    CustomLog "logs/dummy-host.example.com-access.log" common
    <Directory "C:/wamp/www2/">
    Options Indexes FollowSymLinks
    AllowOverride All 
    Order allow,deny
    Allow from all
    </Directory>
    </VirtualHost>

    第4步,重启apache,就可以看到效果了

  • 相关阅读:
    银行卡和手机号占位符
    防京东进度尺的金额
    圆的进度条
    HMTL5滑动块研究
    自动生成验证码
    HTML5语义化
    (转)C++中使用C代码
    (转)四旋翼飞行器基本知识
    如何将.jpg图片 转换成.eps 格式图片
    HDOJ 1196 Lowest Bit
  • 原文地址:https://www.cnblogs.com/chenzhou851025/p/3163247.html
Copyright © 2011-2022 走看看