Forum Moderators: phranque
The correct method for a 301 permanent redirect with ASP is:
<%
Response.Status = "301 Moved Permanently"
Response.AddHeader "Location", "http://www.newdomain.com/newurl/"
Response.End
%>
------------------------------
Judder (or anybody who can help), could you let me know what 301 code to use for an HTML page? or is it similar?
and where should I insert this code?
Thanks!
Nick
An introduction to redirecting URLs on an Apache server [webmasterworld.com]