-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb.config
More file actions
20 lines (20 loc) · 710 Bytes
/
web.config
File metadata and controls
20 lines (20 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit
https://go.microsoft.com/fwlink/?LinkId=301880
-->
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="CanonicalHostNameRule">
<match url="^(.*)$" />
<conditions>
<add input="{HTTP_HOST}" pattern="^confessions.azurewebsites.net$" />
</conditions>
<action type="Redirect" url="https://creedsandconfessions.org/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>