URL Redirection - question

Discussion in 'HTML & Website Design' started by sqallpl, Feb 16, 2009.

  1. #1
    Hi,

    Is it any way to complete redirect direct url?

    For example, I have some files at http://myserver/movies/1.avi
    and I want to share this movie, but I dont want to share my servers url. So I want to find any method to completly hide or redirect this link, so people will be able to download 1.avi file but they wont see real url.

    Is it any method to do this?

    I have domain (.net) but still dont know, maybe I can redirect this file to this domain? For example mydomain.net/download/1.avi ?
     
    sqallpl, Feb 16, 2009 IP
  2. crivion

    crivion Notable Member

    Messages:
    1,669
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    210
    Digital Goods:
    3
    #2
    is it just one file? If so its easy:
    do something like this:
    create a php page and add this code
    <?php
    header('Location: http://myserver/movies/1.avi');
    ?>
     
    crivion, Feb 16, 2009 IP
  3. Kerosene

    Kerosene Alpha & Omega™ Staff

    Messages:
    11,366
    Likes Received:
    575
    Best Answers:
    4
    Trophy Points:
    385
    #3
    PHP headers can still be viewed using something like Live HTTP Headers.

    If they can download it, they can see where it's coming from.

    Why not just host it somewhere else? Like RapidShare etc...
    I've been using Uploading.com to host a few files, they pay you money for each download (not a lot, but it all adds up).
     
    Kerosene, Feb 16, 2009 IP
  4. wd_2k6

    wd_2k6 Peon

    Messages:
    1,740
    Likes Received:
    54
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Maybe you could put the URL inside an SWF player, and stream it so it doesn't download to their temp files for one and maybe they'd need a swf decompiler to get the SWF, but i'm not sure if this is the case.
     
    wd_2k6, Feb 16, 2009 IP