Redirect in CGI
How to do a 301 redirect in CGI
CGI PERL redirect code
x
$q = new CGI;
print $q->redirect("http://www.seu-novo-site.com.br/");
print $q->redirect("http://www.seu-novo-site.com.br/");
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 a CGI PERL?