Skip to content

Commit 7a7bede

Browse files
Add files via upload
add a redirect config
1 parent 67958d1 commit 7a7bede

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Web.Config

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<configuration>
3+
<system.webServer>
4+
<rewrite>
5+
<rules>
6+
<rule name="Redirect-to-dbrjs-hw" enabled="true" stopProcessing="true">
7+
<match url="minimum-code.html" ignoreCase="true"/>
8+
<action type="Redirect" url="https://demo.dynamsoft.com/Samples/DBR/JS/1.hello-world/1.hello-world.html" redirectType="Permanent" />
9+
</rule>
10+
</rules>
11+
</rewrite>
12+
</system.webServer>
13+
</configuration>

0 commit comments

Comments
 (0)