如何通过CGI.pm包含Meta标签

发布于 2024-12-17 11:41:27 字数 403 浏览 0 评论 0原文

我想将以下 HTML 元标记包含到 cgi 脚本中:

<meta name="googlebot" content="noindex,nofollow,noarchive,noodp,nosnippet" />

但是为什么这不打印结果?

use CGI;
print
    $query->start_html(-title =>'MyWeb',
       -meta => {
         -name =>'googlebot',
         -content =>'noindex,nofollow,noarchive,noodp,nosnippet'}
    ),p;

正确的做法是什么?

I want to include the following HTML meta tag into a cgi script:

<meta name="googlebot" content="noindex,nofollow,noarchive,noodp,nosnippet" />

But why this doesn't print out the result?

use CGI;
print
    $query->start_html(-title =>'MyWeb',
       -meta => {
         -name =>'googlebot',
         -content =>'noindex,nofollow,noarchive,noodp,nosnippet'}
    ),p;

What's the correct way to do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

乱了心跳 2024-12-24 11:41:27
use strict; 
use warnings;  
use CGI;
my $query = CGI->new();
print
    $query->start_html(-title =>'MyWeb',
       -meta => {'googlebot' => 'noindex,nofollow,noarchive,noodp,nosnippet'}
    );
use strict; 
use warnings;  
use CGI;
my $query = CGI->new();
print
    $query->start_html(-title =>'MyWeb',
       -meta => {'googlebot' => 'noindex,nofollow,noarchive,noodp,nosnippet'}
    );
蝶舞 2024-12-24 11:41:27

对我有用...

在您的示例中,您没有初始化 $query,这可能是问题所在吗?

use CGI;
use strict;
print
    CGI->start_html(-title =>'MyWeb',
       -meta => {
         -name =>'googlebot',
         -content =>'noindex,nofollow,noarchive,noodp,nosnippet'}
    );

Works for me...

In your example, you did not initialize $query, could that be the problem?

use CGI;
use strict;
print
    CGI->start_html(-title =>'MyWeb',
       -meta => {
         -name =>'googlebot',
         -content =>'noindex,nofollow,noarchive,noodp,nosnippet'}
    );
愁杀 2024-12-24 11:41:27

这适用于我的机器:

use CGI qw(start_html);
use strict;
use warnings;


print
    start_html(-title =>'MyWeb',
       -meta => {
         'googlebot' => 'noindex,nofollow,noarchive,noodp,nosnippet',
        }
    );

This works on my machine:

use CGI qw(start_html);
use strict;
use warnings;


print
    start_html(-title =>'MyWeb',
       -meta => {
         'googlebot' => 'noindex,nofollow,noarchive,noodp,nosnippet',
        }
    );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文