Skip to content

Instantly share code, notes, and snippets.

@willwright82
Created July 3, 2014 13:45
Show Gist options
  • Save willwright82/6bcee4563dff62a9d8a2 to your computer and use it in GitHub Desktop.
Save willwright82/6bcee4563dff62a9d8a2 to your computer and use it in GitHub Desktop.
ASP 301 Redirect
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.new-url.com/"
%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment