Quote:
Originally Posted by Mr_Devlin
There is an easier way to anomize your urls. Only one file edit, no style edits required.
Open "class_bbcode.php".
Search for
PHP Code:
// standard URL hyperlink return "<a href=\"$rightlink\" target=\"_blank\"" . ($is_external ? ' rel="nofollow"' : '') . ">$text</a>";
Replace it with following code:
PHP Code:
// standard URL hyperlink return "<a href=\"http://anonym.to/$rightlink\" target=\"_blank\"" . ($is_external ? ' rel="nofollow"' : '') . ">$text</a>";
This will work on all vb editions and all kind of links, incl SSL. You can use an alternating redirector instead of anonym.to, it will work fine also.
|
this is the best method out there Mr_Devlin
here is the same code with diferent redirecting service if people dont like anonym.to
Code:
// standard URL hyperlink
return "<a href=\"http://dereferer.ws/?$rightlink\" target=\"_blank\"" . ($is_external ? ' rel="nofollow"' : '') . ">$text</a>";