Skip to content

Instantly share code, notes, and snippets.

@PetersonDave
Created January 29, 2013 18:19
Show Gist options
  • Save PetersonDave/4666343 to your computer and use it in GitHub Desktop.
Save PetersonDave/4666343 to your computer and use it in GitHub Desktop.
301 redirects.
Context.Response.Status = "301 Moved Permanently";
Context.Response.AddHeader("Location", url);
Context.Response.End();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment