301 redirection in Perl - Perl Send mail vote down 0 vote down 0 Views : 263
Tagged in : Perl
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 .