Help for this page
use CGI ':standard'; # do processing print redirect('http://example.com/');
my $pid = fork; exit if $pid; die "fork: $!" unless defined $pid; # or maybe just warn # continue processing