Skip to content
This repository was archived by the owner on Jan 1, 2020. It is now read-only.

Commit c0325ba

Browse files
committed
Merge branch 'hotfix/380'
Close #380
2 parents bc04c3a + 731e6c4 commit c0325ba

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

public/web.config

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<configuration>
3+
<system.webServer>
4+
<rewrite>
5+
<rules>
6+
<rule name="File or directory rule" stopProcessing="true">
7+
<match url="^.*$" />
8+
<conditions logicalGrouping="MatchAny">
9+
<add input="{REQUEST_FILENAME}"
10+
matchType="IsFile" pattern=""
11+
ignoreCase="false" />
12+
<add input="{REQUEST_FILENAME}"
13+
matchType="IsDirectory"
14+
pattern=""
15+
ignoreCase="false" />
16+
</conditions>
17+
<action type="None" />
18+
</rule>
19+
<rule name="Rewrite rule" stopProcessing="true">
20+
<match url="^.*$" />
21+
<action type="Rewrite" url="index.php" />
22+
</rule>
23+
</rules>
24+
</rewrite>
25+
</system.webServer>
26+
</configuration>

0 commit comments

Comments
 (0)