Page 1 of 1

HTML Help?

Posted: Sun Sep 16, 2007 1:18 pm
by StormScanWx
I figure there are some smart HTML people involved with this forum, so I have a question.

I have webspace, and it has a .mp3 file that I recorded. What I want to do is have a redirect where all users would have to type in would be http://www.thisismysite.com/sd (and then have that redirect to the mp3 file like at http://www.thisismysite.com/example.mp3

Replies are GREATLY appreciated.

Re: HTML Help?

Posted: Sun Sep 16, 2007 3:02 pm
by chadtm80
StormScanWx wrote:I figure there are some smart HTML people involved with this forum, so I have a question.

I have webspace, and it has a .mp3 file that I recorded. What I want to do is have a redirect where all users would have to type in would be http://www.thisismysite.com/sd (and then have that redirect to the mp3 file like at http://www.thisismysite.com/example.mp3

Replies are GREATLY appreciated.


Code: Select all

<meta http-equiv="refresh" content="0;url=http://www.thisismysite.com/example.mp3">


You would simply put the code above on to your http://www.thisismysite.com/sd page somwhere between your <head> </head> tags.. The 0 in the code above reflects seconds for redirect. Set at 0 it will redirect instantly. Change it to 2 for example and it will redirect after two seconds.. If you need any further help just let me know

Posted: Sun Sep 16, 2007 3:44 pm
by StormScanWx
PM sent.

Thanks for your reply.