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中的设置名字相同)

       

     

  • 相关阅读:
    Python 06--面向对象编程
    Python 05--常用模块学习
    6大排序算法,c#实现
    Git管理unity3d项目
    cordova crosswalk android 7.0 问题
    ionic/cordvoa 修改platform文件夹里的文件,build会覆盖问题
    webStorm Linux Ubuntu 中文搜狗输入问题
    Ionic android 底部tabs
    ionic 添加新module
    yii2 Nav::widget() 和 Menu::widget()
  • 原文地址:https://www.cnblogs.com/ytu2010dt/p/4979418.html
Copyright © 2011-2022 走看看