How to mask one link and show the other..

Kokander101

Regular Member
Joined
Aug 2, 2015
Messages
232
Reaction score
63
Hi guys!

I want to show some links in my pbn site but to mask one/few of them, how can I achive this?

Thanks!
 
What specifically are you trying to mask?

For example, are you trying to mask the destination URL from knowing where the click came from? In that case, you can use an intermediary secure page ("https://"), which then redirects the visitor to an insecure ("http://") destination link. Browser rules prevent the referrer from leaking when a visitor is redirected from a secure page to an insecure one.

If you just want to mask the outbound links for aesthetic reasons, you can use link shorteners or create a redirect page (ie. "offer.php"), which then redirects to the destination:
Code:
<?php
header("Location: http://outboundlink.com/");
 
I don't quite get your question, do you want a visitor to click on a certain link than land on another? If that's what you're after then just setup a test hosting with new domain and link that domain wherever you're promoting it, then go to this new host and set a redirect to your main blog. Again maybe that's not what you're asking..
 
This is interesting thread for me to watch, but sounds like a 'cloaking' mode?
 
Jack Jacker Platinum WordPress plugin is your best solution.
hare is the premium link http://jackjackerplatinum.com/dl/dl.php
More info http://jackjackerplatinum.com/happynewyear.html
 
Hi!
Thanks for your answers...
All I want is to cloak one link and hide it and show all the rest of the links on perticular page.

Thanks!
 
Back
Top