我需要将属性为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')
})
答案 0 :(得分:-1)
@Gabriela,
最简单的方法是在HTML页面中为机器人添加<meta>
标记,可以使用该静态URL对其进行访问。样本:
<html>
<head>
<title>...</title>
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
</head>