-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.config
18 lines (18 loc) · 846 Bytes
/
web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Rule 1" stopProcessing="true">
<match url="^(.+)$" ignoreCase="false" />
<conditions>
<add input="%{REQUEST_FILENAME]" matchType="IsDirectory" ignoreCase="false" negate="true" />
<add input="%{REQUEST_FILENAME]" matchType="IsFile" ignoreCase="false" negate="true" />
<add input="%{REQUEST_URI]" pattern="/\.([^/]+)$/" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php?path={R:1}" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>