Created
March 19, 2014 12:17
-
-
Save edysegura/9640473 to your computer and use it in GitHub Desktop.
URL Redirection
This file contains 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
<% | |
response.setStatus(301); | |
response.setHeader("Location", "http://www.your-new-address-here.com/"); | |
response.setHeader("Connection", "close"); | |
%> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment