MyBB Community Forums

Full Version: How to rel=nofollow links in posts??
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

This might be useful for all the webmasters that are running their forums on MyBB, can you please explain to me how to add "rel=nofollow" to all the links in posts/signatures, and also in members websites?

I care much about my PR, don't wanna loose it because of others links..
Please?
Edit ./inc/class_parser.php

Find:

$link = "<a href=\"$fullurl\" target=\"_blank\">$name</a>";

Replace:

$link = "<a href=\"$fullurl\" target=\"_blank\" rel=\"nofollow\">$name</a>";
Don't use the method above, it will nofollow all of your links, whether they're internal or not. Here's a much cleaner and simpler way to do it:

http://community.mybb.com/thread-81141.html
If you only want 1 MyCode: http://community.mybb.com/thread-81141-p...#pid675448