IIS alle Anfragen auf eine Seite weiterleiten

Neue Seite erstellen oder in vorhandene web.conf einfügen.

 

<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name=”RedirectAllToRoot” patternSyntax=”Wildcard” stopProcessing=”true”>
<match url=”*” />
<action type=”Redirect” url=”http://dasziel.tld” />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>

Leave a Reply

Your email address will not be published. Required fields are marked *

*