如何仅在静态网址中插入元标记

时间:2019-03-29 22:16:13

标签: javascript html meta-tags

我需要将属性为noindex / nofollow的特定元标记robots添加到我网站的特定URL中,例如:

www.example.com/static/:somestaticURL

我尝试使用此npm软件包: this post

但是它似乎没有添加标签。这是我的代码:

let Meta = require('express-metatag')

let robotMetaTag =  Meta('robots', true)({
    tag: 'noindex,nofollow'
})

app.get('/static/:staticURL',function(req,res){
    app.use(robotMetaTag);
    res.sendFile(__dirname + '/index.html')
})

1 个答案:

答案 0 :(得分:-1)

@Gabriela,

最简单的方法是在HTML页面中为机器人添加<meta>标记,可以使用该静态URL对其进行访问。样本:

<html>
<head>
<title>...</title>
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
</head>