Forum Moderators: open

Message Too Old, No Replies

A download page that then Re-Directs

         

rotfil

12:20 pm on Dec 11, 2006 (gmt 0)

10+ Year Member



I am looking to direct a user to a website that can then start a download process, automatically if they veiw the page. Any ideas?

To come from an email and then that page redirects them to the main site

Thanks
James

eelixduppy

2:28 am on Dec 12, 2006 (gmt 0)



You can use a meta refresh like so:

<META HTTP-EQUIV="Refresh" CONTENT="5; URL=redirect_page.html">

Or some javascript:


document.location.href = 'redirect_page.html';

Or if you're like me, a PHP redirect using header (if you have php ;)):


header("Location: redirect_page.html");

As you can see there are many choices. I would go with the last one if you can, but if not there are other solutions out there as well.

Good luck!