File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ The **minimum configuration** to get your application running under Apache is:
45
45
DocumentRoot /var/www/project/web
46
46
<Directory /var/www/project/web>
47
47
AllowOverride All
48
- Order allow, deny
48
+ Order Allow,Deny
49
49
Allow from All
50
50
</Directory>
51
51
@@ -76,7 +76,7 @@ and increase web server performance:
76
76
DocumentRoot /var/www/project/web
77
77
<Directory /var/www/project/web>
78
78
AllowOverride None
79
- Order allow, deny
79
+ Order Allow,Deny
80
80
Allow from All
81
81
82
82
<IfModule mod_rewrite.c>
@@ -110,7 +110,7 @@ and increase web server performance:
110
110
Using mod_php/PHP-CGI with Apache 2.4
111
111
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
112
112
113
- In Apache 2.4, ``Order allow,deny `` has been replaced by ``Require all granted ``.
113
+ In Apache 2.4, ``Order Allow,Deny `` has been replaced by ``Require all granted ``.
114
114
Hence, you need to modify your ``Directory `` permission settings as follows:
115
115
116
116
.. code-block :: apache
@@ -223,7 +223,7 @@ should look something like this:
223
223
<Directory /var/www/project/web>
224
224
# enable the .htaccess rewrites
225
225
AllowOverride All
226
- Order allow, deny
226
+ Order Allow,Deny
227
227
Allow from all
228
228
</Directory>
229
229
You can’t perform that action at this time.
0 commit comments