nofollow

adeniyi faith

Power Member
Joined
May 15, 2017
Messages
510
Reaction score
129
Hi guys I wonder if there is any line of code I could add to the footer or header of my site to set all out going links to NO-follow.
Thanks in advance.
 
If you're using wordpress, you can install External Links plugin to set all outgoing links as nofollow.
 
Hello.
1) Download the program Notepad++.
2) Open the template file of the header / footer.
3) Click Ctrl+F -> tab Replace
4) Use regular expressions. Do search / replace by expressions:

Code:
search: <a(.*?)</a>
replace: <a ref="nofollow"$1</a>
 
Back
Top