-
Notifications
You must be signed in to change notification settings - Fork 0
/
web.config
34 lines (34 loc) · 1.28 KB
/
web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
- <modules runAllManagedModulesForAllRequests="false" />
- <rewrite>
- <rules>
- <clear />
- <rule name="RewriteToPublic" enabled="true" patternSyntax="ECMAScript" stopProcessing="true">
- <match url="(.*)"/>
- <action type="Rewrite" url="public/{R:1}" />
- </rule>
- </rules>
- </rewrite>
- </system.webServer>
+ <rewrite>
+ <rules>
+ <rule name="RewriteRequestsToPublic">
+ <match url="^(.*)$" />
+ <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
+ </conditions>
+ <action type="Rewrite" url="public/{R:0}" />
+ </rule>
+ <rule name="Imported Rule 1" stopProcessing="true">
+ <match url="^(.*)$" ignoreCase="false" />
+ <conditions logicalGrouping="MatchAll">
+ <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
+ <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
+ </conditions>
+ <action type="Rewrite" url="public/index.php/{R:1}" appendQueryString="true" />
+ </rule>
+ </rules>
+ </rewrite>
+ </system.webServer>
</configuration>