hiding a url or link
Permalink
How can I hide a url or link from persons when they browse my site? Is it possible? For example, I want them to be able to click on a link but I dont want them to see where its linked to, neither have any options to view the properties or source info.
1. Create a file with .php extension containing the following code:
<?php header( 'Location:http://www.SOMESITE.com/maskeddestination.php'... ) ; ?>
Obviously, change the "SOMESITE" and "maskeddestination" to your site and file details.
2. create an html link, hyper-linking to your .php file
3. when the link is clicked the redirect goes direct to thehttp://www.SOMESITE.com/maskeddestination.php...
Not sure if this is what you wanted but I use it for affiliate linking ;-)