Hi, anyone know how to write a select or if 301 redirect
basicall I need if
http://www.mysite/direct?cat=2
is requested redirect to new page
if
http://www.mysite/direct?cat=5
is requested redirect to its new page
and so on
Thanks if anyone knows
Richard
Code:
<%@ Language=VBScript %> <% ' Permanent redirection Response.Status = "301 Moved Permanently" Response.AddHeader "Location", "./" Response.End %>
http://www.mysite/direct?cat=2
is requested redirect to new page
if
http://www.mysite/direct?cat=5
is requested redirect to its new page
and so on
Thanks if anyone knows
Richard
Comment