How to make one file redirect to another?

0

An HTTPS page of mine is requiring me to just link to HTTPS resources. Otherwise, user-warning messages appear. I wanted it to be possible to download a file from the site without any warning message to the user. Except that I need to save the file to another location that only serves HTTP. Is it possible to create a file on the HTTPS server that redirects the download to be downloaded from the HTTP server?

    
asked by anonymous 05.02.2014 / 13:54

1 answer

1

The solution is simple. In the link that will open the file, use target="_ blank"

<a href="aqruivo.xxx" target="_blank">download</a>
    
05.02.2014 / 14:03