Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created December 3, 2017 21:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angelovstanton/847a568f5c5f65ec56328ab3e04590f3 to your computer and use it in GitHub Desktop.
Save angelovstanton/847a568f5c5f65ec56328ab3e04590f3 to your computer and use it in GitHub Desktop.
private async Task OnRequestRedirectTrafficEventHandler(object sender, SessionEventArgs e)
{
if (e.WebSession.Request.RequestUri.AbsoluteUri.Contains("logo.svg"))
{
await e.Redirect("https://automatetheplanet.com/wp-content/uploads/2016/12/homepage-img-1.svg");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment