Teknik is a suite of services with attractive and functional interfaces.
https://www.teknik.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
849 B
20 lines
849 B
<?xml version="1.0" encoding="UTF-8"?> |
|
<configuration> |
|
<system.webServer> |
|
<rewrite> |
|
<rules> |
|
<rule name="RedirectDefaultPage" enabled="true" stopProcessing="true"> |
|
<match url="^(.+)$" negate="true" /> |
|
<action type="Redirect" url="home/" /> |
|
</rule> |
|
<rule name="RewriteSubMainURL" enabled="false" stopProcessing="false"> |
|
<match url="^([^/]+)/(.*)$" /> |
|
<conditions> |
|
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> |
|
</conditions> |
|
<action type="Rewrite" url="{R:2}" appendQueryString="false" /> |
|
</rule> |
|
</rules> |
|
</rewrite> |
|
</system.webServer> |
|
</configuration>
|
|
|