====== apache AH01630: client denied by server configuration异常 ======
apache2.4 与 apache2.2 的虚拟主机配置写法有所不同
apache2.2的写法:
ServerName domain.com
DocumentRoot "/home/www"
DirectoryIndex index.html index.php
Options -Indexes +FollowSymlinks
AllowOverride All
Order deny,allow
Allow from all
如果在2.4中使用以上写法就会出现apache AH01630: client denied by server configuration异常。
apache2.4中的写法为
ServerName domain.com
DocumentRoot "/home/www"
DirectoryIndex index.html index.php
Options -Indexes +FollowSymlinks
AllowOverride All
Require all granted