Hi,
I have a client who moved from 6.7.x to 7.3 and now is using SP/LS.
Hence to direct html/jsp/etc. The customer used to create redirect pages for sites that were expired or moved. Now the ability is gone.
Trying to see if any one has experience with this and how would you redirect a page with a 301 with components.
This is how the customer did it previously: default.xxxx
<%@ Language=VBScript %>
<%
' Permanent redirection
Response.Status = "301 Moved Permanently"
Response.AddHeader "Location", "
http://www.site.com/"Response.End
%>
How can this be achieved for the whole page with components/pages etc.
Appreciated.
Thanks