Tutorials

https://vvcestudio.com.br/en/tutorial/dotnet/redirect/
menu

REDIRECT with ASP

REDIRECT with ASP
x
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.your-new-website.com.br/"
%>
Logo ASP

What is the 301 Redirect?


The Redirect 301 is an instruction on the server that Page A is now Page B so that when the visitor lands on Page A they will automatically be forwarded to Page B's address.
It is through this mechanism that when you access unibanco.com.br you land on itau.com.br and also when you access www.vvcestudio.com.br you land on vvcestudio.com.br.
What is ASP?