Forum Moderators: phranque
Append to the .htaccess file:
redirect 301 /foo/bar.htm http://www.widget.com/newfoo/newbar.htm
Or for ASP, add the following to the top of the document:
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location", "/newfoo.asp"
%>