Redirect a page to another domain in ASP


/ Published in: ASP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <%@ Language=VBScript %>
  2. <%
  3. Response.Status="301 Moved Permanently"
  4. Response.AddHeader "Location","http://www.eastoncommunications.ca"
  5. %>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.