http协议配置虚拟主机的几种方式

 

1、 HTTP协议(网络基础)

网络传输信息----OSI七层模型(理论)

               物理层---网线、网卡、驱动

               数据链路层---路由器(ip

               网络层------分组(TCP  UDP

               。。。。

               应用层------(应用HTTP

          TCP/IP四层

          互相独立

2、 Apache服务器

1) 主配置

ServerRootapache的根目录

Listen:监听端口号

LoadModule DSO

虚拟主机

  ServerName 192.168.52.26:80

 DocumentRoot web根文档目录

    .htaccess

    DirectoryIndex index.php index.php3 index.html index.htm

http://www.baidu.com/index.html

./news_manage/index.php

./a.php

//header

AddType application/x-compress .Z

第一种方式:安装多个apache

第二种方式:一个网卡绑定多个ip

  1)添加ip地址

  本地连接—tcp/ip属性—高级---添加

192.168.52.100

  192.168.52.101

  2http.conf

      Options Indexes FollowSymLinks

      Order Deny,Allow

      deny from all

      Allow from all

     

DocumentRoot  D:/wamp/www/php_xml

ServerName  www.ok1.com

#ErrorLog /usr/local/apache/logs/error1_log

#CustomLog /usr/local/apache/logs/access1_log combined

DocumentRoot  D:/wamp/www/news_manage1

ServerName   www.ok2.com

#ErrorLog /usr/local/apache/logs/error2_log

#CustomLog /usr/local/apache/logs/access2_log combined

3)ip-域名

  192.168.52.100----www.ok2.com

  动态:DNS

  静态:hosts

     Ip     域名

127.0.0.1 localhost

192.168.52.100 www.ok1.com

192.168.52.101 www.ok2.com

  第三种:基于域名

        一个ip绑定多个域名

        

第四种

 Rewrite 功能:隐藏真实地址,防止注入

 http://www.ok1.com/index.php?id=3

http://index_3.php

http://index_3

 

你可能感兴趣的:(http协议配置虚拟主机的几种方式)