Freelance Jobs
Marketplace
Forums
Login
Join
ASP 301 Redirect
Home
\
Forums
\
Programming & Development Forums
\
ASP Forums
\ ASP 301 Redirect
Share
Tweet
MrPhear
1 years, 6 months ago
301 redirect your ASP pages using the script below;
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.url-to-redirect.com/"
%>
Guest