博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
apache 的虚拟主机和 web访问时序图
阅读量:6672 次
发布时间:2019-06-25

本文共 2067 字,大约阅读时间需要 6 分钟。

一、提出问题:虚拟主机的配置

http://localhost/news.html
 
http://www.sohu.com
http://www.taobao.com.cn
目前我们是 
http://localhost/myblog/
需求我希望
http://www.shunping.com       
http://www.sohu.com
 
二、配置虚拟主机的步骤如下:
1. 启用  httpd-vhosts.conf
在 httpd.conf 文件中
# Virtual hosts ,虚拟主机
Include conf/extra/
httpd-vhosts.conf   (代表连接到的文件位置)
2.    在httpd-vhosts.conf文件中做配置 (文件连接过来配置内容)
#配置我们自己的虚拟主机
<VirtualHost 127.0.0.1:80>
    DocumentRoot "d:/myblog"
    #这里配置欢迎首页面
    DirectoryIndex index.html index.htm index.php
    <Directory />
    Options FollowSymLinks
    #不许可别人修改我们的页面
    AllowOverride None
    #设置访问权限
    Order allow,deny
    Allow from all
    </Directory>
</VirtualHost>
3. 修改hosts 文件 ->新的知识点. (重新审视我们的访问一个网页的真正流程)
127.0.0.1            
www.shunping.com
53.jpg
        4.    测试一下
三、课堂练习:
     
      在httpd.conf文件中配置一台 的虚拟主机,然后在window系统中注册 这台主机。
  • 1、在httpd.conf 文件中启用 httpd-vhosts.conf
就是把#注销掉
# Virtual hosts ,虚拟主机
Include conf/extra/httpd-vhosts.conf
  • 2、假设我们的虚拟主机在 f:/myweb 盘 [该站点,事先有]
  • 3、设置http-vhosts.conf文件
#配置我们自己的虚拟主机
<VirtualHost127.0.0.1:80>
    DocumentRoot "d:/myblog"
    #这里配置欢迎首页面
    DirectoryIndex news.html  index.html index.htm index.php  (可以设置news.html为首页)
    <Directory />
    Options FollowSymLinks
    #不许可别人修改我们的页面
    AllowOverride None
    #设置访问权限
    Order allow,deny
    Allow from all
    </Directory>
</VirtualHost>
        4、
在hosts文件中添加我们的ip 和主机映射关系
c:/windows/system32/drivers/etc/hosts
127.0.0.1             
     
        5. 1  如果是配置多个站点通过
端口来区分的话:需要  
                   在httpd-vhosts.conf文件中做配置多一次(不同端口)/hosts 文件修改多一次(复制多一份)/ httpd.conf文件中    多一个Linsten 端口号2
 
        5.2   如果是配置多个站点通过
serverName来区分的话:需要  在httpd-vhosts.conf文件中修改如下:
<VirtualHost  *:80>
    DocumentRoot "d:/myblog"
   
ServerName www.daomul1.com
    DirectoryIndex news.html  index.html index.htm index.php  (可以设置news.html为首页)
    <Directory />
    Options FollowSymLinks
    #不许可别人修改我们的页面
    AllowOverride None
    #设置访问权限
    Order allow,deny
    Allow from all
    </Directory>
</VirtualHost>
 
<VirtualHost  *:80>
    DocumentRoot "d:/myblog"
   
ServerName www.daomul2.com
    DirectoryIndex news.html  index.html index.htm index.php  (可以设置news.html为首页)
    <Directory />
    Options FollowSymLinks
    #不许可别人修改我们的页面
    AllowOverride None
    #设置访问权限
    Order allow,deny
    Allow from all
    </Directory>
</VirtualHost>
    

转载于:https://www.cnblogs.com/daomul/archive/2013/06/07/3125461.html

你可能感兴趣的文章
Hadoop - HDFS的数据流剖析
查看>>
Win7下部署asp.net程序如果有RDLC报表需要以下配置
查看>>
Jhipster_cn中文翻译组
查看>>
Nagios简介与安装(1)
查看>>
centos 本地yum配置
查看>>
使用Vundle来管理vim的插件
查看>>
我们容易忽略的WebDriver 的一些方法
查看>>
一个算法,但是不知道名字,博客记录一下
查看>>
用AsyncTask来实现自己定义的观察者类(加载器)Loader(17)
查看>>
Windows借助脚本实现自动化加域
查看>>
构造函数私有化
查看>>
我的友情链接
查看>>
Linux Shell编程
查看>>
[Django](1093, "You can't specify target table。。错误
查看>>
the App Transport Security policy requires the use
查看>>
归档与反归档
查看>>
Learning Data Structure_5_图(2)
查看>>
HDS G1000和Gx00的端口属性
查看>>
Innodb中mysql如何快速删除2T的大表
查看>>
bash基本命令的使用(笔记)
查看>>