@@ -45,7 +45,7 @@ The **minimum configuration** to get your application running under Apache is:
4545 DocumentRoot /var/www/project/web
4646 <Directory /var/www/project/web>
4747 AllowOverride All
48- Orderallow, deny
48+ OrderAllow,Deny
4949 Allow from All
5050 </Directory>
5151
@@ -76,7 +76,7 @@ and increase web server performance:
7676 DocumentRoot /var/www/project/web
7777 <Directory /var/www/project/web>
7878 AllowOverride None
79- Orderallow, deny
79+ OrderAllow,Deny
8080 Allow from All
8181
8282 <IfModule mod_rewrite.c>
@@ -110,7 +110,7 @@ and increase web server performance:
110110 Using mod_php/PHP-CGI with Apache 2.4
111111~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
112112
113- In Apache 2.4, ``Orderallow,deny `` has been replaced by ``Require all granted ``.
113+ In Apache 2.4, ``OrderAllow,Deny `` has been replaced by ``Require all granted ``.
114114Hence, you need to modify your ``Directory `` permission settings as follows:
115115
116116..code-block ::apache
@@ -223,7 +223,7 @@ should look something like this:
223223 <Directory /var/www/project/web>
224224 # enable the .htaccess rewrites
225225 AllowOverride All
226- Orderallow, deny
226+ OrderAllow,Deny
227227 Allow from all
228228 </Directory>
229229