Apache2.4.6 添加虚拟主机
Posted 一葉知秋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Apache2.4.6 添加虚拟主机相关的知识,希望对你有一定的参考价值。
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后重启即可。
以上是关于Apache2.4.6 添加虚拟主机的主要内容,如果未能解决你的问题,请参考以下文章
_default_:443 的 Apache2.4 优先于第一个 *:443 虚拟主机定义