Created
January 18, 2017 20:00
-
-
Save bronius/54ce2acd7f4fe600a36ae26bb3ba220d to your computer and use it in GitHub Desktop.
Running into issues with a .Net project's ability to pull its DDay deployed Click Once installer update files hosted on Amazon S3 static website due to mysterious 404. The original manifest was pulled, and the app prompts to download update, but the update failed with 404. Turns out the subsequent requests made with superfluous forward slash ("/…
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<RoutingRules> | |
<RoutingRule> | |
<Condition> | |
<KeyPrefixEquals>//</KeyPrefixEquals> | |
</Condition> | |
<Redirect> | |
<ReplaceKeyPrefixWith>/</ReplaceKeyPrefixWith> | |
</Redirect> | |
</RoutingRule> | |
</RoutingRules> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment