Skip to content

Instantly share code, notes, and snippets.

@m0veax
Created December 7, 2018 12:38
Show Gist options
  • Save m0veax/ce861dfdeebee90e91dba44ead07640b to your computer and use it in GitHub Desktop.
Save m0veax/ce861dfdeebee90e91dba44ead07640b to your computer and use it in GitHub Desktop.
IIS Custom 404 Redirect
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<httpErrors errorMode="Custom">
<remove statusCode="404" />
<error statusCode="404" path="/my_path/" responseMode="Redirect"/>
</httpErrors>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment