Skip to content

Commit 4b071f9

Browse files
benmccallumposva
authored andcommitted
fix(history-mode): correcting indentation in web.config example (#1948)
* Fixed spacing in web.config example * Fix indentation in web.config example (FR) * Fix indentation in web.config example (JA) * Fix indentation in web.config example (KR) * Fix indentation in web.config example (RU) * Fix indentation in web.config example (zh-cn)
1 parent 4e9e66b commit 4b071f9

File tree

6 files changed

+30
-30
lines changed

6 files changed

+30
-30
lines changed

docs/en/essentials/history-mode.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ For Node.js/Express, consider using [connect-history-api-fallback middleware](ht
8080
<rewrite>
8181
<rules>
8282
<rule name="Handle History Mode and custom 404/500" stopProcessing="true">
83-
<match url="(.*)" />
84-
<conditions logicalGrouping="MatchAll">
85-
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
86-
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
87-
</conditions>
83+
<match url="(.*)" />
84+
<conditions logicalGrouping="MatchAll">
85+
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
86+
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
87+
</conditions>
8888
<action type="Rewrite" url="/" />
8989
</rule>
9090
</rules>

docs/fr/essentials/history-mode.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ Pour Node.js avec Express, vous pouvez utiliser le [middleware connect-history-a
8080
<rewrite>
8181
<rules>
8282
<rule name="Handle History Mode and custom 404/500" stopProcessing="true">
83-
<match url="(.*)" />
84-
<conditions logicalGrouping="MatchAll">
85-
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
86-
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
87-
</conditions>
83+
<match url="(.*)" />
84+
<conditions logicalGrouping="MatchAll">
85+
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
86+
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
87+
</conditions>
8888
<action type="Rewrite" url="/" />
8989
</rule>
9090
</rules>

docs/ja/essentials/history-mode.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ Node.js/Express では [connect-history-api-fallback middleware](https://github.
8080
<rewrite>
8181
<rules>
8282
<rule name="Handle History Mode and custom 404/500" stopProcessing="true">
83-
<match url="(.*)" />
84-
<conditions logicalGrouping="MatchAll">
85-
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
86-
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
87-
</conditions>
83+
<match url="(.*)" />
84+
<conditions logicalGrouping="MatchAll">
85+
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
86+
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
87+
</conditions>
8888
<action type="Rewrite" url="/" />
8989
</rule>
9090
</rules>

docs/kr/essentials/history-mode.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,11 @@ Node.js/Express의 경우 [connect-history-api-fallback 미들웨어](https://gi
7878
<rewrite>
7979
<rules>
8080
<rule name="Handle History Mode and custom 404/500" stopProcessing="true">
81-
<match url="(.*)" />
82-
<conditions logicalGrouping="MatchAll">
83-
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
84-
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
85-
</conditions>
81+
<match url="(.*)" />
82+
<conditions logicalGrouping="MatchAll">
83+
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
84+
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
85+
</conditions>
8686
<action type="Rewrite" url="index.html" />
8787
</rule>
8888
</rules>

docs/ru/essentials/history-mode.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ http.createServer((req, res) => {
8080
<rewrite>
8181
<rules>
8282
<rule name="Handle History Mode and custom 404/500" stopProcessing="true">
83-
<match url="(.*)" />
84-
<conditions logicalGrouping="MatchAll">
85-
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
86-
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
87-
</conditions>
83+
<match url="(.*)" />
84+
<conditions logicalGrouping="MatchAll">
85+
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
86+
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
87+
</conditions>
8888
<action type="Rewrite" url="/" />
8989
</rule>
9090
</rules>

docs/zh-cn/essentials/history-mode.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ http.createServer((req, res) => {
8080
<rewrite>
8181
<rules>
8282
<rule name="Handle History Mode and custom 404/500" stopProcessing="true">
83-
<match url="(.*)" />
84-
<conditions logicalGrouping="MatchAll">
85-
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
86-
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
87-
</conditions>
83+
<match url="(.*)" />
84+
<conditions logicalGrouping="MatchAll">
85+
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
86+
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
87+
</conditions>
8888
<action type="Rewrite" url="/" />
8989
</rule>
9090
</rules>

0 commit comments

Comments
 (0)