博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WAMP下Apache配置httpd-vhosts虚拟主机多站点
阅读量:6159 次
发布时间:2019-06-21

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

hot3.png

开发环境:WAMP

  实例一,Apache配置localhost虚拟主机步骤
  1,用记事本打开apache目录下httpd文件(如:D:\wamp\bin\apache\apache2.2.8\conf),找到如下模块
  
  #Virtualhosts
  #Includeconf/extra/httpd-vhosts.conf
  去掉前面的#,这样就开启了httpd-vhosts虚拟主机文件。这时候重启wamp环境,无法打开localhost,需要在httpd-vhosts.conf配置一下。
  
  2,用记事本打开httpd-vhosts文件,配置好localhost虚拟主机,参照httpd-vhosts文件中实例,修改成如下:
  
  <VirtualHost*:80>
  ServerAdminwebmaster@dummy-host.localhost
  DocumentRoot”D:\wamp\www”
  ServerNamelocalhost
  ServerAliaslocalhost
  ErrorLog”logs/dummy-host.localhost-error.log”
  CustomLog”logs/dummy-host.localhost-access.log”common
  </VirtualHost>
  修改配置如下:
  DocumentRoot修改为本地wamp环境下的www目录(如:D:\wamp\www)
  ServerName改为localhost
  
  3,重启Apache,发现localhost可以正常打开,配置localhost比较简单。
  
  实例二,Apache配置test.biuuu.com虚拟主机步骤
  
  1,方法同上,复制配置代码修改如下:
  
  <VirtualHost*:80>
        
  DocumentRootE:\WebRoot\biuuu
  ServerNametest.biuuu.com
  ErrorLog”logs/dummy-host2.localhost-error.log”
  CustomLog”logs/dummy-host2.localhost-access.log”common
  </VirtualHost>
  2,打开host文件(C:\WINDOWS\system32\drivers\etc\hosts),增加一行代码
  
  127.0.0.1test.biuuu.com
  3,在浏览器中打开test.biuuu.com,发现如下错误403Forbidden错误
  Forbidden
  Youdon’thavepermissiontoaccess/onthisserver.
  
  分析:这主要是目录访问权限没有设置,需要设置对目录的访问权!
  
  4,打开httpd文件,找到如下语句
  
  <Directory/>
  OptionsFollowSymLinks
  AllowOverrideNone
  Orderdeny,allow
  Denyfromall
  </Directory>
  复制以上代码,并进行目录修改,把/替换为E:\WebRoot\biuuu,修改virtualHost代码如下
  
  <VirtualHost*:80>
  ServerAdmintest@biuuu.com
  DocumentRootE:\WebRoot\biuuu
  ServerNametest.biuuu.com
  ErrorLog”logs/dummy-host2.localhost-error.log”
  CustomLog”logs/dummy-host2.localhost-access.log”common
  
  <DirectoryE:\WebRoot\biuuu>
  OptionsFollowSymLinks
  AllowOverrideNone
  Orderdeny,allow
  Denyfromall
  </Directory>
  
  </VirtualHost>
  在浏览器中测试发现还是打不开,提示如上403Forbidden错误,修改其中的Denyfromall为allowfromall
  
  5,重启Apache,虚拟主机配置成功!
  
  注意事项
  1,目录路径,如E:\WebRoot\biuuu
  2,访问权限,如上Denyfromall修改为allowfromall
  3,host文件,配置虚拟域名host指向
  4,httpd文件,打开Includeconf/extra/httpd-vhosts.conf模块
  5,httpd-vhosts文件,配置虚拟主机
  
  使用Apache配置httpd-vhosts虚拟主机对于开发人员来说比较简单,但却非常重要,仅供参考!

转载于:https://my.oschina.net/u/2393989/blog/795274

你可能感兴趣的文章
[TC13761]Mutalisk
查看>>
while()
查看>>
常用限制input的方法
查看>>
IIS7下使用urlrewriter.dll配置
查看>>
并行程序设计学习心得1——并行计算机存储
查看>>
bulk
查看>>
C++ 迭代器运算
查看>>
【支持iOS11】UITableView左滑删除自定义 - 实现多选项并使用自定义图片
查看>>
【算法笔记】多线程斐波那契数列
查看>>
java8函数式编程实例
查看>>
jqgrid滚动条宽度/列显示不全问题
查看>>
在mac OS10.10下安装 cocoapods遇到的一些问题
查看>>
css技巧
查看>>
Tyvj 1728 普通平衡树
查看>>
javascript性能优化
查看>>
多路归并排序之败者树
查看>>
java连接MySql数据库
查看>>
转:Vue keep-alive实践总结
查看>>
深入python的set和dict
查看>>
C++ 11 lambda
查看>>