摘要:apache AH01630: client denied by server configuration错误解决方法
出现这个错误的原因是,apache2.4 与 apache2.2 的虚拟主机配置写法不同导致。
apache2.2的写法:
apache AH01630: client denied by server configuration错误解决方法
出现这个错误的原因是,apache2.4与apache2.2的虚拟主机配置写法不同导致。
apache2.2的写法:
<VirtualHost*:80> ServerNamefdipzone.demo.com DocumentRoot"/home/fdipzone/sites/www" DirectoryIndexindex.htmlindex.php <Directory"/home/fdipzone/sites/www"> Options-Indexes+FollowSymlinks AllowOverrideAll Orderdeny,allow Allowfromall </Directory> </VirtualHost>
如果在2.4中使用以上写法就会有apache AH01630: client denied by server configuration错误。
解决方法,apache2.4中
Orderdeny,allow Allowfromall Allowfromhostip
修改为:
Requireallgranted Requirehostip
修改后的配置如下:
<VirtualHost*:80> ServerNamefdipzone.demo.com DocumentRoot"/home/fdipzone/sites/www" DirectoryIndexindex.htmlindex.php <Directory"/home/fdipzone/sites/www"> Options-Indexes+FollowSymlinks AllowOverrideAll Requireallgranted </Directory> </VirtualHost>
apache-2.4.x把NameVirtualHost给取消,现在配置虚拟主机不需要再配置NameVirtualHost了.
删除了 Order deny,allow 和 Order allow,deny
把 Deny from all 替换成了 Require all denied
把Allow from all 替换成了 Require all granted
然后还把 Allow from 192.168.10.21 这样的语句给替换成了 Require host 192.168.10.21
相关文章推荐
虚拟主机的专业参数,分别都是什么意思?2022-09-09
中非域名注册规则是怎样的?注册域名有什么用处? 2022-01-10
HostEase新年活动促销 美国/香港主机全场低至五折2021-12-28
HostGator下载完整备份教程分享2021-12-28
Flink中有界数据与无界数据的示例分析2021-12-28