Questions tagged [nofollow]

nofollow is a value that can be assigned to the rel attribute of an HTML a element to instruct some search engines that a hyperlink should not influence the link target's ranking in the search engine's index.

nofollow is a value that can be assigned to the rel attribute of an HTML a element to instruct some search engines that a hyperlink should not influence the link target's ranking in the search engine's index.

It is intended to reduce the effectiveness of certain types of search engine spam, thereby improving the quality of search engine results and preventing spamdexing from occurring.

Example:

<a href="http://www.example.com/" rel="nofollow">Link text</a>
152 questions
22
votes
1 answer

Rails rel nofollow link

I need to create no follow links with link_to. I'm looking for something like this: <%= link_to "example", example_path, :target => "_blank" %> But for no follow of course.
thenengah
  • 42,557
  • 33
  • 113
  • 157
19
votes
5 answers

how to prevent staging to be indexed in search engines

I would like my staging web sites to no being indexed by search engines (Google as first). I have heard Wordpress is good at doing this but I would like to be technology agnostic. Does the robots.txt is enough ? We would like to keep anonymous…
toutpt
  • 5,145
  • 5
  • 38
  • 45
16
votes
1 answer

"rel=nofollow noopener" - Possible to have both at the same time?

I've got a pdf that I'd like to protect and don't want search engines to index it. Currently, my link is as follows: View PDF Would I be able to add nofollow tag to the rel…
Joe Bloggs
  • 1,410
  • 2
  • 24
  • 53
16
votes
4 answers

What does rel="nofollow me" do?

I notice on SO userpage all urls have rel="nofollow me" (i was thinking of putting nofollow on my site so i checked here to see what SO does). What does the 'me' part do?
user34537
14
votes
3 answers

Precedence of X-Robots-Tag header vs robots meta tag

I've placed the following Header in my vhost config: Header set X-Robots-Tag "noindex, nofollow" The goal here is to just disable search engines from indexing my testing environment. The site is Wordpress and there is a plugin installed to manage…
Jared Eitnier
  • 7,012
  • 12
  • 68
  • 123
8
votes
1 answer

Is it useless to add `nofollow` using Javascript?

AFAIK, the rel="nofollow" attribute on links instruct search engines not to follow through the link when it crawls your site, therefore severing all assumption of relationship between your site and the linked site, and therefore, not sharing any of…
Richard Neil Ilagan
  • 14,627
  • 5
  • 48
  • 66
8
votes
2 answers

How to automatically set all links to nofollow in Rails

I know I can pass :rel => "nofollow" to link_to but is there a way to set that by default so I don't have to make changes in each link_to tag?
deb
  • 12,326
  • 21
  • 67
  • 86
7
votes
0 answers

How to set rel="nofollow" links with summernote

I have a problem. I would like set rel="nofollow" Links in my summernote editor. I tried to rng.insertNode($('' + sLinkText + '')[0]); on line 1757 but it doesn't work. Can someone help me please? THX
7
votes
4 answers

X-Robots noindex specific page in .htaccess

Can I 'noindex, follow' a specific page using x robots in .htaccess? I've found some instructions for noindexing types of files, but I can't find instruction to noindex a single page, and what I have tried so far hasn't worked. This is the page I'm…
moobot
  • 477
  • 1
  • 4
  • 20
6
votes
3 answers

Does Google follow Buttons/Inputs

Does google follow buttons and form inputs when crawling websites? I'm adding rel="nofollow" tags to links I don't want google to follow but I'm not sure if I need to add them to buttons. For example an 'add to cart' button. Thanks
a1anm
  • 1,617
  • 11
  • 45
  • 78
5
votes
1 answer

help with regex - how can i make some urls no-follow?

Ok so i've made this function which works fine for converting most urls like pies.com or www.cakes.com to an actual link tag. function render_hyperlinks($str){ $regex =…
Haroldo
  • 36,607
  • 46
  • 127
  • 169
5
votes
3 answers

If I put a rel="nofollow" will the referrer site will appear on Google Analytics of example.com?

If I put a rel="nofollow" will the referrer site will appear on Google Analytics of example.com? Example: Referrer site is: referrer.com
Rommer Dela Cruz
  • 262
  • 1
  • 4
  • 9
4
votes
1 answer

How to set the X-Robots-Tag HTTP header via .htaccess file based on URL query string

Is it possible to apply HTTP header directives based on the URL's query string using an apache .htaccess? For example, based on this resource http://code.google.com/web/controlcrawlindex/docs/robots_meta_tag.html under the section titled "Practical…
John Erck
  • 9,478
  • 8
  • 61
  • 71
4
votes
1 answer

Odoo Is it possible to stop adding the project's followers to its task when it is created?

I have been managing Odoo 9 and there are some complain from customers who use odoo project to create issues about getting a lot of emails when tasks is created and commenting in the task. When I remove the followers from the project, then the…
Eric Lee
  • 700
  • 2
  • 9
  • 30
4
votes
3 answers

Is the rel dofollow more important than meta nofollow?

Basicly, i have a site that i cant remove the but i want list of links to be dofollow. If i write rel="dofollow" on each of these href, will they prevail over the meta tag and actually become…
Joan Silverstone
  • 385
  • 1
  • 3
  • 15
1
2 3
10 11