Many of our customers seem to have trouble spelling the name of our company properly so we registered the most popular one and would like that redirected to the correct one.
We've had our DNS provider forward to the correct IP.
I've created the following rule
<rule name="Redirect FitzFelt" enabled="true" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}" pattern="^fitzfelt\.com$" />
</conditions>
<action type="Redirect" url="https://www.filzfelt.com/" redirectType="Permanent" />
</rule>
Can anyone tell me how to fix this?