Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 55fcff5

Browse files
authored
Merge pull request magento#8816 from magento/pull/8816
Correct missing part in content
2 parents 524b394 + ecf340e commit 55fcff5

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

src/guides/v2.3/install-gde/prereq/apache.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -210,20 +210,20 @@ Installing and configuring Apache is basically a three-step process: install the
210210
1. Locate the block that starts with:
211211

212212
```conf
213-
<Directory /var/www/html>
213+
<Directory "/var/www/html">
214214
```
215215

216216
1. Change the value of `AllowOverride` to `All`.
217217

218218
For example,
219219

220220
```conf
221-
<Directory /var/www/>
221+
<Directory "/var/www/">
222222
Options Indexes FollowSymLinks MultiViews
223223
AllowOverride All
224224
Order allow,deny
225225
Allow from all
226-
<Directory>
226+
</Directory>
227227
```
228228

229229
{:.bs-callout-info}
@@ -250,19 +250,19 @@ Failure to enable these settings typically results in no styles displaying on yo
250250

251251
1. Locate the block that starts with:
252252

253-
`<Directory /var/www/html>`
253+
`<Directory "/var/www/html">`
254254

255255
1. Change the value of `AllowOverride` to `All`.
256256

257257
For example:
258258

259259
```conf
260-
<Directory /var/www/html>
260+
<Directory "/var/www/html">
261261
Options Indexes FollowSymLinks MultiViews
262262
AllowOverride All
263263
Order allow,deny
264264
Allow from all
265-
<Directory>
265+
</Directory>
266266
```
267267

268268
1. Save the file and exit the text editor.
@@ -304,7 +304,7 @@ To enable website visitors to access your site, use one of the [Require directiv
304304
For example:
305305

306306
```conf
307-
<Directory /var/www/>
307+
<Directory "/var/www/">
308308
Options Indexes FollowSymLinks MultiViews
309309
AllowOverride All
310310
Order allow,deny

src/guides/v2.4/install-gde/prereq/apache.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -210,20 +210,20 @@ Installing and configuring Apache is basically a three-step process: install the
210210
1. Locate the block that starts with:
211211

212212
```conf
213-
<Directory /var/www/html>
213+
<Directory "/var/www/html">
214214
```
215215

216216
1. Change the value of `AllowOverride` to `All`.
217217

218218
For example,
219219

220220
```conf
221-
<Directory /var/www/>
221+
<Directory "/var/www/">
222222
Options Indexes FollowSymLinks MultiViews
223223
AllowOverride All
224224
Order allow,deny
225225
Allow from all
226-
<Directory>
226+
</Directory>
227227
```
228228

229229
{:.bs-callout-info}
@@ -250,19 +250,19 @@ Failure to enable these settings typically results in no styles displaying on yo
250250

251251
1. Locate the block that starts with:
252252

253-
`<Directory /var/www/html>`
253+
`<Directory "/var/www/html">`
254254

255255
1. Change the value of `AllowOverride` to `All`.
256256

257257
For example:
258258

259259
```conf
260-
<Directory /var/www/html>
260+
<Directory "/var/www/html">
261261
Options Indexes FollowSymLinks MultiViews
262262
AllowOverride All
263263
Order allow,deny
264264
Allow from all
265-
<Directory>
265+
</Directory>
266266
```
267267

268268
1. Save the file and exit the text editor.
@@ -304,7 +304,7 @@ To enable website visitors to access your site, use one of the [Require directiv
304304
For example:
305305

306306
```conf
307-
<Directory /var/www/>
307+
<Directory "/var/www/">
308308
Options Indexes FollowSymLinks MultiViews
309309
AllowOverride All
310310
Order allow,deny

0 commit comments

Comments
 (0)