zoukankan      html  css  js  c++  java
  • wamp2.5虚拟站点建立

    1. D:wampinapacheApache2.2.21conf 目录下打开httpd.conf修改以下几个地方。(软件安装在D盘)

    (1)178行DocumentRoot "E:/www/" //修改网站路径

    (2)192行   #Deny from all

                  Allow from all   //允许所有用户访问

    (3)206行  <Directory "E:/www/"> //修改网站路径

    (4)234行    #Deny from all

                   Allow from all  //允许所有用户访问

    (5)468行   #Include conf/extra/httpd-vhosts.conf //去掉前面的#号

    2 D:wampinapacheApache2.2.21confextra下httpd-vhosts.conf文件复制如下文件到最后面(27-34行),并修改其中三行。包括盘幅和域名。

    <VirtualHost *:80>

        ServerAdmin webmaster@dummy-host.example.com

        DocumentRoot "c:/Apache2/docs/dummy-host.example.com"

        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

    </VirtualHost>

    <VirtualHost *:80>

        ServerAdmin webmaster@dummy-host.example.com

        DocumentRoot "E:/www/study"

        ServerName styudy.com

        ServerAlias www.study.com

        ErrorLog "logs/dummy-host.example.com-error.log"

        CustomLog "logs/dummy-host.example.com-access.log" common

    </VirtualHost>

    3. C:WindowsSystem32driversetc 目录下hosts 最下面加入如下语句

    127.0.0.1       study.com

    127.0.0.1       www.study.com  //使域名与ip对应  (此处域名与2中的设置名字相同)

       

     

  • 相关阅读:
    硬盘安装FreeBSD 6.1release步骤
    Centos,bash: service: command not found
    test1tset
    ubuntu只能访问部份网站的处理方法
    lamp lnmp
    调查用QQ企业邮箱的smtp需要添加spf1
    asp.net文件下载
    FreeBSD更新ports源
    ubuntu 12.10 安装 fcitx 五笔
    csh/tcsh颜色配置
  • 原文地址:https://www.cnblogs.com/ytu2010dt/p/4979418.html
Copyright © 2011-2022 走看看