在 apache的httpd.conf 文件中添加 Order deny,allow无法启动

apache 版本 2.4.20 win64
我在 httpd.conf 文件中添加下面语句:

 <IfModule dir_module>
    DirectoryIndex index.html
    Alias /myblog "E:/myblog"
    <Directory E:/myblog>
    Order deny,allow
    Allow from all
    </Directory>
</IfModule>

apache 无法启动,但我把“ Order deny,allow “和“ Allow from all “这两句话注释掉之后, apache 则可以正常启动,求万能的网友帮忙解答一下!!!

在apache2.4版本之前做客户端访问控制,是用Allow Deny Order指令做访问控制的,而在2.4的版本上是用的用法跟之前的版本大不相同,如下

################################################
2.2上的配置
Order deny,allow
Deny from all

2.4上的配置
Require all denied

################################################
2.2上的配置
Order allow,deny
Allow from all

2.4上的配置
Require all granted

#################################################