Forum Moderators: phranque
Saw the posting on redirecting .mp3 files. I have a site that is also getting a lot of traffic direct to the .mp3 url, and am trying to redirect to our download page.
I found this code, which works for one .mp3 URL - but I need to do it for all the Mp3 files.
redirectMatch ^(.+)\greatsong.mp3$ http://www.example.com/BuyDownloads.htm
I lamely tried to just copy and paste the code with the different songs, but looks like I need some way to compile them.
Any ideas for a newbie?
RedirectMatch ^(.+)\.mp3$ http://www.example.com/BuyDownloads.htm
Jim