Hello,
how can I hide my download url from the address bar, status bar and when visitors view my source code from their browser?
pls help, thanks.
angelbear
hide url
Moderator: General Moderators
it is quite easy..
make a download.php file and in it put somthing like:
and pass the download files in the link like:
easy ain't it?
make a download.php file and in it put somthing like:
Code: Select all
if(IsSet($file))
{
header("Location: path/download/folder/$file");
}Code: Select all
<a href='download.php?file=filename.ext'>download</a>easy ain't it?