热门标签 | HotTags
当前位置:  开发笔记 > 前端 > 正文

Apache搭建多个站点方法详解

Apache的虚拟主机是一种允许在同一台机器上配置多个不同站点的web服务器环境的,就是iis一样可以创建多站点了,但是apache需要在编辑状态操作,不能像windowsiis直接点击几下就好了。

Apache的虚拟主机是一种允许在同一台机器上配置多个不同站点的web服务器环境的,就是iis一样可以创建多站点了,但是apache需要在编辑状态操作,不能像windows iis直接点击几下就好了,以下是介绍配置的方法。

最平常的大概有3种方法。

第一种:单IP不同端口

第二种:多IP同端口(独立IP的虚拟空间)

第三种:域名绑定根目录的方式(共享IP的虚拟空间)

Apache的核心配置文件名是”httpd.conf”,其所存放的路径在Apache目录下的conf文件夹下。修改它只需要使用记事本(建议使用其他编辑器,带行数的那种,方便修改),生效的话只需要保存httpd.conf,重启apache即可。

下面多站点支持的话,修改httpd.conf的第187~264行(不同的httpd.conf可能有差异),也就是在ServerAdmin和ServerName那里,大部分是注释。下面是主要修改的地方。

注意:如果是服务器请备份httpd.conf后再修改文件。

  1. # 'Main' server configuration 
  2. # 
  3. # The directives in this section set up the values used by the 'main' 
  4. # server, which responds to any requests that aren't handled by a 
  5.  definition.  These values also provide defaults for 
  6. # any  containers you may define later in the file. 
  7. # 
  8. # All of these directives may appear inside  containers, 
  9. # in which case these default settings will be overridden for the 
  10. # virtual host being defined. 
  11. # 
  12. # 
  13. # ServerAdmin: Your address, where problems with the server should be 
  14. # e-mailed.  This address appears on some server-generated pages, such 
  15. # as error documents.  e.g. admin@your-domain.com 
  16. # 
  17. ServerAdmin admin@example.com 
  18. # 
  19. # ServerName gives the name and port that the server uses to identify itself. 
  20. # This can often be determined automatically, but we recommend you specify 
  21. # it explicitly to prevent problems during startup. 
  22. # 
  23. # If your host doesn't have a registered DNS name, enter its IP address here. 
  24. # 
  25. ServerName www.example.com:80 
  26. # 
  27. # Deny access to the entirety of your server's filesystem. You must 
  28. # explicitly permit access to web content directories in other  
  29.  blocks below. 
  30. # 
  31.  
  32.     AllowOverride All 
  33.     Require all denied 
  34.  
  35. # 
  36. # Note that from this point forward you must specifically allow 
  37. # particular features to be enabled - so if something's not working as 
  38. # you might expect, make sure that you have specifically enabled it 
  39. # below. 
  40. # 
  41. # 
  42. # DocumentRoot: The directory out of which you will serve your 
  43. # documents. By default, all requests are taken from this directory, but 
  44. # symbolic links and aliases may be used to point to other locations. 
  45. # 
  46. DocumentRoot "g:/www" 
  47. "g:/www"
  48.     # 
  49.     # Possible values for the Options directive are "None", "All", 
  50.     # or any combination of: 
  51.     #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews 
  52.     # 
  53.     # Note that "MultiViews" must be named *explicitly* --- "Options All" 
  54.     # doesn't give it to you. 
  55.     # 
  56.     # The Options directive is both complicated and important.  Please see 
  57.     # http://httpd.apache.org/docs/2.4/mod/core.html#options 
  58.     # for more information. 
  59.     # 
  60.     Options Indexes FollowSymLinks 
  61.     # 
  62.     # AllowOverride controls what directives may be placed in .htaccess files. 
  63.     # It can be "All", "None", or any combination of the keywords: 
  64.     #   Options FileInfo AuthConfig Limit 
  65.     # 
  66.     AllowOverride All 
  67.     # 
  68.     # Controls who can get stuff from this server. 
  69.     # 
  70.     Require all granted 
  71.  

第一种一般是测试环境,毕竟加了端口,如何绑定域名,访问的时候域名后面也需加端口。

例子分别通过80和8080访问不同的根目录,大概在50几行有个Listen 80,在下面添加8080端口。

  1. Listen 80 
  2. Listen 8080  
  3.     ServerAdmin admin@myxzy.com  
  4.     ServerName localhost:80  
  5.     DocumentRoot "g:/www1"  
  6.      "g:/www1">  
  7.      Options  Indexes FollowSymLinks  
  8.      AllowOverride All  
  9.      Require all granted  
  10.        
  11.   
  12.   
  13.     ServerAdmin admin@myxzy.com 
  14.     ServerName localhost:8080   
  15.     DocumentRoot "g:/www2"  
  16.    "g:/www2">  
  17.      Options Indexes FollowSymLinks  
  18.      AllowOverride All  
  19.      Require all granted  
  20.            
  21.  

第二种多IP同端口。

IP地址1:192.168.2.2  IP地址2:192.168.1.68  端口同是80端口。

  1.   
  2.     ServerAdmin admin@myxzy.com  
  3.     ServerName localhost:80  
  4.     DocumentRoot "g:/www1"  
  5.      "g:/www1">  
  6.      Options FollowSymLinks  
  7.      AllowOverride All  
  8.      Require all granted  
  9.        
  10.   
  11.   
  12.     ServerAdmin admin@myxzy.com 
  13.     ServerName localhost:80  
  14.     DocumentRoot "g:/www2"  
  15.    "g:/www2">  
  16.      Options FollowSymLinks  
  17.      AllowOverride All  
  18.      Require all granted  
  19.            
  20.  

第三种同IP不同域名和根目录(域名的话修改本地host演示)。

  1.   
  2.     ServerAdmin admin@myxzy.com  
  3.     ServerName www.hzhuti.com  
  4.     DocumentRoot "g:/www1"  
  5.      "g:/www1">  
  6.      Options FollowSymLinks  
  7.      AllowOverride All  
  8.      Require all granted  
  9.        
  10.   
  11.   
  12.     ServerAdmin admin@myxzy.com 
  13.     ServerName www.111cn.net 
  14.     DocumentRoot "g:/www2"  
  15.    "g:/www2">  
  16.      Options FollowSymLinks  
  17.      AllowOverride All  
  18.      Require all granted  
  19.            
  20.  


推荐阅读
  • Ubuntu 环境下配置 LAMP 服务器
    本文详细介绍了如何在 Ubuntu 系统上安装和配置 LAMP(Linux、Apache、MySQL 和 PHP)服务器。包括 Apache 的安装、PHP 的配置以及 MySQL 数据库的设置,确保读者能够顺利搭建完整的 Web 开发环境。 ... [详细]
  • 本文详细探讨了在Web开发中常见的UTF-8编码问题及其解决方案,包括HTML页面、PHP脚本、MySQL数据库以及JavaScript和Flash应用中的乱码问题。 ... [详细]
  • 本文详细介绍了如何在Oracle VM VirtualBox中实现主机与虚拟机之间的数据交换,包括安装Guest Additions增强功能,以及如何利用这些功能进行文件传输、屏幕调整等操作。 ... [详细]
  • 本文介绍了SIP(Session Initiation Protocol,会话发起协议)的基本概念、功能、消息格式及其实现机制。SIP是一种在IP网络上用于建立、管理和终止多媒体通信会话的应用层协议。 ... [详细]
  • 我的读书清单(持续更新)201705311.《一千零一夜》2006(四五年级)2.《中华上下五千年》2008(初一)3.《鲁滨孙漂流记》2008(初二)4.《钢铁是怎样炼成的》20 ... [详细]
  • 实践指南:使用Express、Create React App与MongoDB搭建React开发环境
    本文详细介绍了如何利用Express、Create React App和MongoDB构建一个高效的React应用开发环境,旨在为开发者提供一套完整的解决方案,包括环境搭建、数据模拟及前后端交互。 ... [详细]
  • 如何在Vista中通过组策略禁用添加或删除程序功能
    本文详细介绍了如何在Windows Vista操作系统中通过组策略禁用“添加或删除程序”功能,以防止未经授权的用户安装或卸载应用程序。文章内容清晰易懂,适合IT管理员和技术人员阅读。 ... [详细]
  • 树莓派4B:安装基础操作系统指南
    本文将详细介绍如何为树莓派4B安装基础操作系统,包括所需材料、镜像下载、镜像烧录以及更换国内源等步骤。 ... [详细]
  • 本文介绍了 PHP 的基本概念、服务器与客户端的工作原理,以及 PHP 如何与数据库交互。同时,还涵盖了常见的数据库操作和安全性问题。 ... [详细]
  • 在1995年,Simon Plouffe 发现了一种特殊的求和方法来表示某些常数。两年后,Bailey 和 Borwein 在他们的论文中发表了这一发现,这种方法被命名为 Bailey-Borwein-Plouffe (BBP) 公式。该问题要求计算圆周率 π 的第 n 个十六进制数字。 ... [详细]
  • 在日常生活中,支付宝已成为不可或缺的支付工具之一。本文将详细介绍如何通过支付宝实现免费提现,帮助用户更好地管理个人财务,避免不必要的手续费支出。 ... [详细]
  • 本文详细介绍了如何在ARM架构的目标设备上部署SSH服务端,包括必要的软件包下载、交叉编译过程以及最终的服务配置与测试。适合嵌入式开发人员和系统集成工程师参考。 ... [详细]
  • 本文探讨了在Windows系统中运行Apache服务器时频繁出现崩溃的问题,并提供了多种可能的解决方案和建议。错误日志显示多个子进程因达到最大请求限制而退出。 ... [详细]
  • 在尝试使用 Android 发送 SOAP 请求时遇到错误,服务器返回 '无法处理请求' 的信息,并指出某个值不能为 null。本文探讨了可能的原因及解决方案。 ... [详细]
  • 在Python编程中,经常需要处理文件下载的任务。本文将介绍三种常用的下载方法:使用urllib、urllib2以及requests库进行HTTP请求下载,同时也会提及如何通过ftplib从FTP服务器下载文件。 ... [详细]
author-avatar
珠珠VS胖胖
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有