环境要求
Apache(HTTPD)我的版本是2.4.3 Win32,你可能需要php引擎模块来测试php网站。
配置文件
假设您已经知道在 httpd.conf 文件中为 main server 配置各种参数包括 DocumentRoot、ServerAdmin、ServerName等。那么配置虚拟主机就很方便了。为了配置文件方便管理,httpd.conf 中有一行指令用来包含外部的配置文件:
Include conf/extra/httpd-vhosts.conf这行默认是注释掉的,主要是为虚拟主机的配置。所以在该文件(httpd-vhosts.conf)中添加虚拟主机的配置内容:
如果我在 e:/etc/www/ 下存放了两个网站,一个是 ggicci.cn,一个是 pet.com。分别存放在 ggicci.cn 目录和 pet.com 目录下。我现在要为 ggicci.cn 配置成一个虚拟主机,占据端口 81,也就是说我访问该网站需要输入 localhost:81 (本文内容只与本地测试相关,不涉及远程服务器)。pet.com 同理占据端口 82。我的配置内容如下:
Listen 81 # 监听81端口 <VirtualHost *:81> ServerAdmin ggicci@163.com DocumentRoot "e:/etc/www/ggicci.cn" # 网站根目录 DirectoryIndex index.html index.php # 主页索引,因为是php网站,所以添加一个.php的 # ServerName ErrorLog "logs/ggicci.cn-error.log" # 错误日志 CustomLog "logs/ggicci.cn-access.log" common # 访问日志 </VirtualHost> Listen 82 <VirtualHost *:82> ServerAdmin ggicci@163.com DocumentRoot "e:/etc/www/chongwuxingqiu.com" DirectoryIndex index.html index.jsp # jsp网站,所以添加一个.jsp的 # ServerName ErrorLog "logs/chongwuxingqiu.com-error.log" CustomLog "logs/chongwuxingqiu.com-access.log" common JkMount /*.jsp chongwuxingqiu # 这个是 mod_jk 的指令,与 tomcat 相关 </VirtualHost>
测试结果
#e:/etc/www/ggicci.cn/index.php <?php echo "ggicci.cn"; ?>
//e:/etc/www/pet.com/index.jsp <!DOCTYPE html> <%@ page contentType="text/html; charset=utf-8"%> <html> <head> <title>宠物星球</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <% out.println("宠物星球"); %> </body> </html>
参考资料
@Ggicci 本文属于个人学习笔记,如有错误,希望您能指正!转载请注明出处,谢谢 :) [CSDN博客] |
作者:ggicci 发表于2012-12-30 21:52:10 原文链接
阅读:59 评论:0 查看评论