Skip to content

Instantly share code, notes, and snippets.

@xto3na
Created December 18, 2016 11:36
Show Gist options
  • Save xto3na/4c9f071c97e561a87b329b8fc66ecc85 to your computer and use it in GitHub Desktop.
Save xto3na/4c9f071c97e561a87b329b8fc66ecc85 to your computer and use it in GitHub Desktop.
REDIRECT for Web.config
<!-- Redirect -->
<system.webServer>
<rewrite>
<rules>
<rule name="Redirect" stopProcessing="true">
<match url=".*" />
<action type="Redirect" url="http://not-found.com/" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment