-
Notifications
You must be signed in to change notification settings - Fork 0
/
web.config
24 lines (24 loc) · 1.05 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
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="API">
<match url="^api/(.*)/(.*)" ignoreCase="true" />
<action type="Rewrite" url="/api.php?type={R:1}&method={R:2}" appendQueryString="false" />
</rule>
<rule name="Categorias">
<match url="^categorias/(.*)" ignoreCase="true" />
<action type="Rewrite" url="/categorias.php?type={R:1}" appendQueryString="false" />
</rule>
<rule name="Main" stopProcessing="true">
<match url="^([^\.]+)$" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="{R:1}.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>