-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb.config
More file actions
17 lines (17 loc) · 825 Bytes
/
web.config
File metadata and controls
17 lines (17 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^([^/]*)/([^/]*)/([a-zA-Z0-9_-]+)\.min$" ignoreCase="false" />
<action type="Rewrite" url="/index.php?content={R:1}&id={R:2}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 2" stopProcessing="true">
<match url="^([^/]*)/([^/]*)/([^/]*)/([a-zA-Z0-9_-]+)\.min$" ignoreCase="false" />
<action type="Rewrite" url="/index.php?content={R:1}&id={R:2}&hal={R:3}" appendQueryString="false" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>