-
Notifications
You must be signed in to change notification settings - Fork 1
/
web.config
28 lines (28 loc) · 1.52 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
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Disable requests to application system directories" stopProcessing="true">
<match url="^(App|Libs|vendor|Var/Logs)/.*$" ignoreCase="false" />
<action type="CustomResponse" url="/" statusCode="403" statusReason="Forbidden" statusDescription="Forbidden" />
</rule>
<rule name="Disable requests to application config files" stopProcessing="true">
<match url="^(composer|\.gitignore|\.hgignore|README\.md|LICENSE\.md|\.htaccess)$" ignoreCase="false" />
<action type="CustomResponse" url="/" statusCode="403" statusReason="Forbidden" statusDescription="Forbidden" />
</rule>
<rule name="Rewrite all requests (not a directory or a file) to index.php" stopProcessing="true">
<match url="^.*$" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" />
</rule>
</rules>
</rewrite>
<staticContent>
<!--mimeMap fileExtension=".woff" mimeType="application/x-font-woff" /-->
</staticContent>
</system.webServer>
</configuration>