301 redirection in Perl
by Vinoth[ Edit ] 2010-01-29 10:58:37
If you want to move a page permanently from one url to another url or one domain to another domain we have to do 301 redirection.
Here the code in perl........
301 Redirection in CGI PERL:
$q = new CGI;
print $q->redirect("http://www.hiox.com");