Classic ASP Search Engine Friendly Redirects

A while back I posted how to code a search engine friendly redirect in ASP.NET. Recently I’ve had to go old school and preform this task in Classic ASP. Here is the VBScript version of a search engine friendly redirect.

<%
   Response.Status="301 Moved Permanently"
   Response.AddHeader "Location","http://example.com/newpage/"
   Response.End
%>
This entry was posted in Classic ASP and tagged , . Bookmark the permalink.

Comments are closed.