diff --git a/cookbook/configuration/web_server_configuration.rst b/cookbook/configuration/web_server_configuration.rst
index 9a8e2955009..915f3721c77 100644
--- a/cookbook/configuration/web_server_configuration.rst
+++ b/cookbook/configuration/web_server_configuration.rst
@@ -45,7 +45,7 @@ The **minimum configuration** to get your application running under Apache is:
DocumentRoot /var/www/project/web
AllowOverride All
- Order allow, deny
+ Order Allow,Deny
Allow from All
@@ -76,7 +76,7 @@ and increase web server performance:
DocumentRoot /var/www/project/web
AllowOverride None
- Order allow, deny
+ Order Allow,Deny
Allow from All
@@ -110,7 +110,7 @@ and increase web server performance:
Using mod_php/PHP-CGI with Apache 2.4
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-In Apache 2.4, ``Order allow,deny`` has been replaced by ``Require all granted``.
+In Apache 2.4, ``Order Allow,Deny`` has been replaced by ``Require all granted``.
Hence, you need to modify your ``Directory`` permission settings as follows:
.. code-block:: apache
@@ -223,7 +223,7 @@ should look something like this:
# enable the .htaccess rewrites
AllowOverride All
- Order allow, deny
+ Order Allow,Deny
Allow from all