当前位置:首页 > PHP教程 > Apach > 列表

apache虚​拟​主​机配置方法详解

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-20 14:45:49 浏览: 评论:0 

h​t​t​p​d​​v​h​o​s​t​s​文件在apache中配置是非常重要的一个环节了,我们可以把所有目录都配置到h​t​t​p​d​​v​h​o​s​t​s​中,下面整理了一些例子,我们一起来看看.

实例一,Apache 配置localhost虚拟主机步骤

1,用记事本打开apache目录下httpd文件(如:D:\wamp\bin\apache\apache2.2.8conf),找到如下模块.

# Virtual hosts

#Include conf/extra/httpd-vhosts.conf

去掉前面的#,这样就开启了httpd-vhosts虚拟主机文件,这时候重启wamp环境,无法打开localhost,需要在httpd- vhosts.conf配置一下.

2,用记事本打开httpd-vhosts文件,配置好localhost虚拟主机,参照httpd- vhosts文件中实例,修改成如下:

  1. <VirtualHost *:80> 
  2. ServerAdmin webmaster@dummy-host.localhost 
  3. DocumentRoot “D:wampwww” 
  4. ServerName localhost 
  5. ServerAlias localhost 
  6. ErrorLog “logs/dummy-host.localhost-error.log” 
  7. CustomLog “logs/dummy-host.localhost-access.log” common 
  8. </VirtualHost> 
  9. //开源代码phpfensi.com 

修改配置如下:

DocumentRoot 修改为本地wamp环境下的www目录(如:D:wampwww),ServerName改为localhost.

3,重启Apache,发现localhost可以正常打开,配置localhost比较简单.

实例二,Apache配置 www.phpfensi.com虚拟主机步骤

1,方法同上,复制配置代码修改如下:

  1. <VirtualHost *:80> 
  2. ServerAdmin test@biuuu.com 
  3. DocumentRoot E:WebRootbiuuu 
  4. ServerName www.phpfensi.com 
  5. ErrorLog “logs/dummy-host2.localhost-error.log” 
  6. CustomLog “logs/dummy-host2.localhost-access.log” common 
  7. </VirtualHost> 

2,打开host文件(C:\WINDOWS\system32\driversetchosts,增加一行代码:

127.0.0.1 www.phpfensi.com

3,在浏览器中打开www.phpfensi.com,发现如下错误403 Forbidden错误

Forbidden,You don’t have permission to access / on this server.

分析:这主要是目录访问权限没有设置,需要设置对目录的访问权.

4,打开httpd文件,找到 如下语句:

  1. <Directory /> 
  2. Options FollowSymLinks 
  3. AllowOverride None 
  4. Order deny,allow 
  5. Deny from all 
  6. </Directory> 

复制以上代码,并进行目录修改,把/替换为E:WebRootbiuuu,修改virtualHost代码如下:

  1. <VirtualHost *:80> 
  2. ServerAdmin test@biuuu.com 
  3. DocumentRoot E:WebRootbiuuu 
  4. ServerName www.phpfensi.com 
  5. ErrorLog “logs/dummy-host2.localhost-error.log” 
  6. CustomLog “logs/dummy-host2.localhost-access.log” common 
  7.  
  8. <Directory E:WebRootbiuuu> 
  9. Options FollowSymLinks 
  10. AllowOverride None 
  11. Order deny,allow 
  12. Deny from all 
  13. </Directory> 
  14.  
  15. </VirtualHost> 

在浏览器中测试发现还是打不开,提示如上403 Forbidden错误,修改其中的Deny from all为allow from all.

5,重启Apache,虚拟主机配置成功.

注意事项:

1,目录路径,如E:WebRootbiuuu

2,访问权限,如上Deny from all修改为allow from all

3,host文件,配置虚拟域名host指向

4,httpd文件,打开Include conf/extra/httpd-vhosts.conf模块

5,httpd-vhosts文件,配置虚拟主机

使用 Apache配置httpd-vhosts虚拟主机对于开发人员来说比较简单,但却非常重要,仅供参考.

D:wampalias 也可以这样配置虚拟域名,和例二相同效果,代码如下:

  1. <VirtualHost *:80> 
  2. ServerName blog.cc 
  3. ServerAlias blog.cc 
  4. DocumentRoot “D:wampwwwblog” 
  5. <Directory “D:wampwwwblog”> 
  6. Options All FollowSymLinks IncludesNOEXEC Indexes 
  7. DirectoryIndex index.html index.htm default.htm index.php default.php index.cgi default.cgi index.shtml index.aspx default.aspx 
  8. AllowOverride All 
  9. Order Deny,Allow 
  10. Allow from all 
  11. </Directory> 
  12. </VirtualHost> 

最后我们对php.ini做一下安全配置吧,代码如下:

disable_functions = 在这里可以限制php函数

Tags: apache主​机配置 apache配置方法

分享到: