1、搭建环境

Windowsxp sp3+ httpd-2.2.22-win32-x86-openssl-0.9.8t.msi(apache2安装包)+firefox浏览器

 

2、修改apache2配置搭建主机

其实默认安装完apache2后,服务器这个时候已经运行,在浏览器中

输入localhost,服务器已经正常运行。

 

这里主要介绍如何进行端口的修改

C:\Program Files\Apache Software Foundation\Apache2.2\conf里面全是有关服务器的配置目录,而其中httpd.conf是配置核心

 

Ø        
DocumentRoot “C:/Program Files/Apache Software Foundation/Apache2.2/htdocs”

就是默认的html文件放置路径

Ø         访问权限配置

<Directory />

    Options FollowSymLinks

    AllowOverride None

    Order deny,allow

    Deny from all

</Directory>

 

Ø        
Listen
监听端口的更改

Ø         虚拟主机的配置文件加载

Ø        
SSL
加密认证配置

Ø         等等

 

将默认的Listen 80改为8080,重启启动服务

 

 

 

而使用localhost访问的话就不能正确访问了

 

 

3、搭建虚拟主机服务器

Ø         将这两行的注释去掉

#LoadModule vhost_alias_module modules/mod_vhost_alias.so

#Include conf/extra/httpd-vhosts.conf

Ø         注释掉ServerAdmin所在行

Ø         C:\Program Files\Apache Software Foundation\Apache2.2\conf\extra\ httpd-vhosts.conf文件中增加如下:

<VirtualHost *:80>

    DocumentRoot “C:/www/test/”

    ServerName www.test.com

    <Directory “C:/www/test/”>

        Options FollowSymLinks

        AllowOverride None

        Order allow,deny

        allow from all

           </Directory>

</VirtualHost>

并且创建C:/www/test/目录,创建index.html文件

内容如下:

<html>

       <body>

              <h1>Welcome www.test.com!</h1>

       </body>

</html>

Ø         修改C:\WINDOWS\system32\drivers\etc\hosts添加127.0.0.1 www.test.com

Ø         修改服务器为无代理(选项->网络->连接设置)(不然进行解析网址DNS的时候,会用电信商的DNS解析,上一步做的本地的hosts修改无效)

 

 

大功告成:访问www.test.com

4、搭建二级域名虚拟主机服务器

在C:\Program Files\Apache Software Foundation\Apache2.2\conf\extra\httpd-vhosts.conf中加入

 <VirtualHost *:80>
    ServerName aaa.test.com
    ServerAlias *.test.com
    VirtualDocumentRoot “C:/www/%1”
    <Directory “C:/www/%1”>
     Options FollowSymLinks
     AllowOverride None
     Order allow,deny
     allow from all
  </Directory>
</VirtualHost>

VirtualDocumentRoot “C:/www/%1”
就是将二级域名作为参数

 

C:\Program Files\Apache Software Foundation\Apache2.2\conf\httpd.conf中

 

<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    deny from all
</Directory>
修改为

<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    allow from all
</Directory>

并在 c:/www中分别放入aaa 及 bbb目录,当然了其中的index.html必须写

 

C:\WINDOWS\system32\drivers\etc\hosts

加入映射:

127.0.0.1 aaa.test.com
127.0.0.1 bbb.test.com

 

重启服务器,分别访问aaa.test.com bbb.test.com

 

这样的话就方便多了,同一个服务器开源根据功能划分相应的二级域名,这样既功能紧凑又互不影响。

 

版权声明:本文为shuzui1985原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/shuzui1985/archive/2012/07/11/3020941.html