Hello there,
I got forum (phpbb3) and i have topics with a lot of links, like this:
<a href="link..." class="postlink">Link name...</a>
in every link i have class="postlink" and i want to add rel="nofollow" for every external link except my domain by check the 'href' definition.
Its possible with only preg_replace with callback and how ?
Example:
<a href="http://google.com" class="postlink">Link name...</a>
<a href="http://mysite.com" class="postlink">Link name...</a>
i want to be
<a href="http://google.com" class="postlink" rel="nofollow">Link name...</a>
<a href="http://mysite.com" class="postlink">Link name...</a>
Thanks for any help!