Link to home
Start Free TrialLog in
Avatar of mcse20002000
mcse20002000

asked on

301 Redirect code for IIS

duz

i need the 301 redirect code for IIS.

Thanks
SOLUTION
Avatar of humeniuk
humeniuk
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of softplus
softplus

For all those still looking for the exact code, just add this to the top of your code:
<%
Response.Clear
Response.Status = "301 moved permanently"
Response.addheader "Location", "http://www.whereveryouwanttosendthepoorguy.com"
Response.End
%>
To clarify - that is ASP 301 redirect code.