Apache2.4.6 添加虚拟主机

简介: apache2.4 与 apache2.2 的虚拟主机配置写法有所不同 apache2.2的写法: ServerName domain.com DocumentRoot "/home/www" DirectoryIndex index.

apache2.4 与 apache2.2 的虚拟主机配置写法有所不同

apache2.2的写法:

<VirtualHost *:80>  
 ServerName domain.com  
 DocumentRoot "/home/www"  
 DirectoryIndex index.html index.php  
  
 <Directory "/home/www">  
  Options -Indexes +FollowSymlinks  
  AllowOverride All  
  Order deny,allow  
  Allow from all  
 </Directory>  
  
</VirtualHost> 

如果在2.4中使用以上写法就会出现apache AH01630: client denied by server configuration异常。

apache2.4中的写法为

<VirtualHost *:80>  
 ServerName domain.com  
 DocumentRoot "/home/www"  
 DirectoryIndex index.html index.php  
  
 <Directory "/home/www">  
  Options -Indexes +FollowSymlinks  
  AllowOverride All  
  Require all granted  
 </Directory>  
  
</VirtualHost> 

解决方法,apache2.4中需要将

Order deny,allow  
Allow from all  
Allow from host ip  

改为

Require all granted  
Require host ip

 注:yum安装的httpd,在/etc/httpd/conf.d/目录下添加vhosts.conf后重启即可。

相关文章
|
Linux Apache 开发工具
|
Apache Windows
apache 虚拟主机配置
1. wondows xp + apmserv 5.2.6 端口8088 2.httpd.config文件   1. ServerRoot       "D:/APMServ/APMServ5.2.
977 0
|
Apache Linux 网络协议
Apache 虚拟主机 VirtualHost 配置
转自:http://www.neoease.com/apache-virtual-host/ Windows 是市场占有率最高的 PC 操作系统, 也是很多人的开发环境. 其 VirtualHost 配置方法与 Linux 上有些差异, 以下方式适合原生 Apache, XAMPP 和 WAMP 套件.
1485 0
|
Apache 开发工具 Windows
|
安全 网络安全 API
Apache虚拟主机的三种实现方式
Apache虚拟主机的三种实现方式
381 0

推荐镜像

更多