如何通过CGI.pm包含Meta标签
我想将以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对我有用...
在您的示例中,您没有初始化
$query
,这可能是问题所在吗?Works for me...
In your example, you did not initialize
$query
, could that be the problem?这适用于我的机器:
This works on my machine: