如何在perl中加载html页面

时间:2014-07-28 06:07:13

标签: perl cgi

现在,当我使用“myproject.local / cgi-bin / routes.cgi?page = reports”的href链接时,它只是以纯文本显示标题和重定向状态。

我该如何制作它以便它实际加载我在重定向网址中提供的页面?

my $q = CGI->new;
print $q->header();
print $q->redirect('http://integrationsperl.local/reports.html');

请帮助,谢谢

1 个答案:

答案 0 :(得分:4)

不要单独拨打header

调用redirect正在生成重定向标头。

my $q = CGI->new;
print $q->redirect('http://integrationsperl.local/reports.html');

输出:

Status: 302 Found
Location: http://integrationsperl.local/reports.html