-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathweb.config
31 lines (29 loc) · 1.27 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
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.web>
</system.web>
<system.webServer>
<rewrite>
<rules>
<!-- <clear /> -->
<!-- For Example -->
<!-- Important!!! Rule Name can't be repeated. -->
<rule name="webp" stopProcessing="true">
<match url="(.+)\.(jpe?g|png)$" />
<serverVariables>
</serverVariables>
<action type="Rewrite" url="{R:1}.webp" />
<conditions>
<add input="{HTTP_ACCEPT}" pattern="image/webp" />
<add input="{DOCUMENT_ROOT}/document-normalizer/docs/web/{R:1}.webp" matchType="IsFile" />
</conditions>
</rule>
<rule name="Redirect rule1 /document-normalizer/docs/web/programming/javascript/user-guide.html" enabled="true" patternSyntax="ECMAScript">
<match url="programming/javascript/user-guide.html" ignoreCase="true" negate="false" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Redirect" url="https://www.dynamsoft.com/document-normalizer/docs/web/programming/javascript/user-guide/index.html" appendQueryString="false" logRewrittenUrl="false" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>