问题标签 [nofollow]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
762 浏览

javascript - how to add rel noindex to an div with type="text/javascript"

I want to add rel noindex to an div used in my site to display ads.

This is my code used in the page for dispaly:

This is the code for getFooterAd (watch above)

And down in the same page (at the bottom of the page,I have the script):

Of corse the ideal solution, is to add noindex to the div id=ad, but if is not possible, need to find some different solution.

Many thanks for your help

0 投票
1 回答
421 浏览

seo - 如何使用 robots.txt 阻止用于 URL 缩短服务的子域?

假设我的域是example.com. 在 上www.example.com,我设置了我的主网站(使用 Blogger 设置)并用于go.example.comURL 缩短(使用 GoDaddy 缩短服务设置)。现在,我想阻止所有go.example.comURL,以免它们被索引。

如果我在我的主博客中使用rel="noindex,nofollow"URL go.example.com,那么这会影响我的博客搜索引擎优化吗?

0 投票
2 回答
50 浏览

wordpress - wordpress 网站有 25,000 页 rel="nofollow" 我可以一次删除它们吗?

我正在寻找一种方法来批量编辑我的整个 wordpress 网站。我有 25000 页 rel="noFollow",我需要从每一页中删除它。我很怀疑,但是有没有办法使这个过程自动化,还是我一次又一次地删除“nofollow”标签?

0 投票
1 回答
158 浏览

seo - noindex 标签是否会阻止机器人抓取页面上的链接?

如果我有一个带有 noindex 标签的页面<meta name="robots" content="noindex" />,我知道该页面不会显示在搜索结果中。

但是页面上的链接还会被爬取吗?

如果我想让它们被抓取,我可以设置类似 <meta name="robots" content="noindex, follow" />. 它会起作用吗?

0 投票
2 回答
1799 浏览

javascript - 如何使用 javascript 将 rel="nofollow" 添加到与我的域无关的所有外部链接?

我有以下带有三个链接的 html 字符串:

我的域名是example.com. 从上面的代码可以看出,有两个内部链接和一个外部链接。

我需要编写“魔术”函数,将rel="nofollow"属性添加到所有外部链接(不是内部链接)。所以我需要得到以下结果:

我正在尝试编写该函数,这是我当时拥有的:

不幸的是,我的正则表达式似乎不起作用。执行后addNoFollowsToExternal(html) rel="nofollow"不要添加到外部链接href="https://google.com"

请帮助我修复我的正则表达式以解决我的任务。

0 投票
0 回答
591 浏览

linux - 为什么 WGET 在锚标记中跟随 rel=nofollow?

我正在尝试下载一个有效的整个域的 HTML,但它也会跟随并下载如下链接,即使它声明 rel="nofollow"。

我拥有的wget如下:

我已经尝试了 wget 1.15 和 1.18 的各种组合,但没有成功。

wget -version 的输出:

0 投票
0 回答
491 浏览

bbcode - 如何在 BBCode 中创建特定链接 nofollow?

如何在 BBCode 中创建特定链接 nofollow。我是 PHPBB 的新用户,在发布内容时,我尝试在 BBCode 中创建链接 nofollow,但它不起作用。怎么做?

[url= https://google.com]google[/url]

这是代码,现在如何使它成为nofollow。我也尝试了 [urlnf] 标签,但没有成功。

0 投票
1 回答
447 浏览

apache - 如果 header x-robots 设置为 noindex,是否需要 robots.txt,没有跟随?

我试图阻止我的网站被索引/列出:

我已经在 .htaccess 中设置:

是否也需要设置robots.txt?

添加 robots.txt 有什么害处吗?

0 投票
3 回答
2382 浏览

javascript - 如果它是外部链接,我如何将 rel = "nofollow" 添加到 CKEditor 中的链接

我想给rel="nofollow"我的外部链接,其内容由 ckeditor 管理。

example.com = 我的网站

externallink.com = 任何外部链接

例如:

这个解决方案:

来自https://stackoverflow.com/a/6930940/1848929添加nofollow到所有a元素。

如何仅过滤外部链接?

还有关于 CKEditor 数据处理器的深度文档:http: //docs.cksource.com/CKEditor_3.x/Developers_Guide/Data_Processor


注意:Stackoverflow 的文本编辑器使用这些问题的答案。在这个问题中检查两个链接的 rel 属性。


<script src="//cdn.ckeditor.com/4.5.10/standard/ckeditor.js"></script>在我的页面上使用 from cdn。

0 投票
1 回答
3141 浏览

html - 多个 rel 属性

如果遇到具有两个不同rel属性的链接,Google 会如何表现?

我正在尝试将内容用户插入数据库中。我需要阻止用户为搜索引擎创建如下链接,但我不会为内部链接这样做,所以我不能在标题中使用元数据来防止所有链接被关注。因此,如果用户rel手动添加了属性,我将拥有两个rel类似上面示例的新链接。我使用这种方法来制作我的正则表达式。