Skip to content
This repository was archived by the owner on Mar 6, 2023. It is now read-only.

Commit 13bc554

Browse files
committed
Redirect exceptionless.io to be.exceptionless.io
1 parent ab1c78d commit 13bc554

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/web.config

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@
2828
</conditions>
2929
<action type="Redirect" url="http://{HTTP_HOST}/{R:1}" redirectType="SeeOther" />
3030
</rule>
31+
<rule name="Redirect exceptionless.io to be.exceptionless.io">
32+
<match url="^(.*)$" />
33+
<conditions>
34+
<add input="{HTTP_HOST}" matchType="Pattern" pattern="^exceptionless.io$" />
35+
</conditions>
36+
<action type="Redirect" url="https://be.{HTTP_HOST}/{R:1}" redirectType="SeeOther" />
37+
</rule>
3138
<rule name="PushState" stopProcessing="true">
3239
<match url=".*" />
3340
<conditions logicalGrouping="MatchAll">

0 commit comments

Comments
 (0)