标签: 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');
请帮助,谢谢
答案 0 :(得分:4)
不要单独拨打header。
header
调用redirect正在生成重定向标头。
redirect
my $q = CGI->new; print $q->redirect('http://integrationsperl.local/reports.html');
输出:
Status: 302 Found Location: http://integrationsperl.local/reports.html