301 redirection in Perl - Perl Views : 280
Tagged in : Perl
0 0
Send mail
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");
By Vinoth, On - 2010-01-29



    Login to add Comments .