MyBB Community Forums

Full Version: SEO (nofollow) modification
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
As far I know, links are very important in SEO. If you have less links to other sites from your site and more link from other sites, you pr could be higher...

You can prevent out links from your site with nofollow links.

this modification is used for making all links nofollow in your forum.

open class_parser.php

find that codes:
		$link = "<a href=\"$fullurl\" target=\"_blank\">$name</a>";

and replace it with the following codes.

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

it is a very easy and useful modification as you see Smile
Thanks for this tip, arno
thx good idea
Thanks. Where would you modify this for the "homepage" link?
apa, you can modify other links from templates...
thanks
Thanks:*
Does this affect every link or just the ones from other sites?
Why would you want the search engine to not follow a on-site link? That would result in the search engine not following these links and not indexing them.
Well this adds it to posts not to the site.
Pages: 1 2