Three ways to anonymize all outbound links on your website automatically. Copy one snippet and paste it before </body>.
Auto-anonymizes every outbound link on your page. Works on any site — WordPress, forums, HTML.
Use in PHP templates to wrap individual links server-side.
<?php
function anonymize_url($url) {
return 'https://anonymiz.com/?' . rawurlencode($url);
}
// Usage:
echo '<a href="' . anonymize_url('https://example.com/page') . '">Visit</a>';
?>
Manually wrap any individual URL. Just prepend the anonymizer.
Download ready-made plugins for popular platforms.
Anonymizes all outbound links in posts, pages and comments automatically.
Download ↗