Reputation: 61
I need to link a website from my blog. I don't want that the owner of that website know that I have linked his website.
How can I do that ?
Upvotes: 1
Views: 716
Reputation: 63159
Maybe not 100% what you are looking for, but it could be helpful: Meta refresh
Upvotes: 0
Reputation: 18177
You can use http://dontknow.me/
i.e.
http://dontknow.me/http://google.com
Upvotes: 3
Reputation: 13999
Go to http://www.co.cc and sign up for a free domain... Then set up the domain for Web forwarding. The link on your website will go to your new domain, and then immediately forward to the other guys site... He will be none the wiser, only seeing your domain name you registered at .co.cc
I have tested this will my google analytic account, works a charm :)
Upvotes: 0
Reputation: 2403
Use javascript to go to that site using window.location
or use a 3rd party service like anonym.to , by just appending the site that you want to link to . For example :
http://anonym.to/?http://www.example.com
Upvotes: 1
Reputation: 178285
Why would you need to hide this? Anyway it is not up to you to hide - it will be the client that loads your page and click the link. You would need to use a proxy - something like http://someanonymiser.com/url=http.....
Upvotes: 1
Reputation: 27875
Internet Explorer doesn't keep the referer if the URL was opened with the window.location operation
<a href="#" onclick="window.location.replace('http://www.google.com/')">go to google</a>
Upvotes: 0