热门标签 | 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.  


推荐阅读
  • PHP 5.5.0rc1 发布:深入解析 Zend OPcache
    2013年5月9日,PHP官方发布了PHP 5.5.0rc1和PHP 5.4.15正式版,这两个版本均支持64位环境。本文将详细介绍Zend OPcache的功能及其在Windows环境下的配置与测试。 ... [详细]
  • 1:有如下一段程序:packagea.b.c;publicclassTest{privatestaticinti0;publicintgetNext(){return ... [详细]
  • 深入理解Cookie与Session会话管理
    本文详细介绍了如何通过HTTP响应和请求处理浏览器的Cookie信息,以及如何创建、设置和管理Cookie。同时探讨了会话跟踪技术中的Session机制,解释其原理及应用场景。 ... [详细]
  • 如何配置Unturned服务器及其消息设置
    本文详细介绍了Unturned服务器的配置方法和消息设置技巧,帮助用户了解并优化服务器管理。同时,提供了关于云服务资源操作记录、远程登录设置以及文件传输的相关补充信息。 ... [详细]
  • 本文详细分析了Hive在启动过程中遇到的权限拒绝错误,并提供了多种解决方案,包括调整文件权限、用户组设置以及环境变量配置等。 ... [详细]
  • 本文探讨了如何优化和正确配置Kafka Streams应用程序以确保准确的状态存储查询。通过调整配置参数和代码逻辑,可以有效解决数据不一致的问题。 ... [详细]
  • 解决JAX-WS动态客户端工厂弃用问题并迁移到XFire
    在处理Java项目中的JAR包冲突时,我们遇到了JaxWsDynamicClientFactory被弃用的问题,并成功将其迁移到org.codehaus.xfire.client。本文详细介绍了这一过程及解决方案。 ... [详细]
  • 本文详细介绍了如何准备和安装 Eclipse 开发环境及其相关插件,包括 JDK、Tomcat、Struts 等组件的安装步骤及配置方法。 ... [详细]
  • 本文详细介绍如何利用已搭建的LAMP(Linux、Apache、MySQL、PHP)环境,快速创建一个基于WordPress的内容管理系统(CMS)。WordPress是一款流行的开源博客平台,适用于个人或小型团队使用。 ... [详细]
  • PHP 过滤器详解
    本文深入探讨了 PHP 中的过滤器机制,包括常见的 $_SERVER 变量、filter_has_var() 函数、filter_id() 函数、filter_input() 函数及其数组形式、filter_list() 函数以及 filter_var() 和其数组形式。同时,详细介绍了各种过滤器的用途和用法。 ... [详细]
  • 在 Windows 10 中,F1 至 F12 键默认设置为快捷功能键。本文将介绍几种有效方法来禁用这些快捷键,并恢复其标准功能键的作用。请注意,部分笔记本电脑的快捷键可能无法完全关闭。 ... [详细]
  • 本文详细介绍如何使用Python进行配置文件的读写操作,涵盖常见的配置文件格式(如INI、JSON、TOML和YAML),并提供具体的代码示例。 ... [详细]
  • 在计算机技术的学习道路上,51CTO学院以其专业性和专注度给我留下了深刻印象。从2012年接触计算机到2014年开始系统学习网络技术和安全领域,51CTO学院始终是我信赖的学习平台。 ... [详细]
  • 本文介绍了一款用于自动化部署 Linux 服务的 Bash 脚本。该脚本不仅涵盖了基本的文件复制和目录创建,还处理了系统服务的配置和启动,确保在多种 Linux 发行版上都能顺利运行。 ... [详细]
  • 解决Windows 10开机频繁自检问题的实用方法
    许多用户在使用Windows 10系统时,经常会遇到开机时自动进行磁盘检查的情况。这不仅影响了开机速度,还可能带来不必要的麻烦。本文将详细介绍如何通过简单的注册表修改来避免每次开机时的磁盘自检,提升系统启动效率。 ... [详细]
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社区 版权所有