Server Tips > Windows Server > ASP Redirect
301 Permanent Redirection with ASP
When you move one page to another page in same site or in different url, you need to redirect to new page from old page with 301 Permanent Redirection. This is required for search engines. If you do not do this, your site ranking can be affected.
You can do this with following ASP code.
<%
' Permanent redirection
Response.Status = "301 Moved Permanently"
Response.AddHeader "Location", "http://www.flashwebhost.com/"
Response.End
%>
|