Forum Moderators: phranque

Message Too Old, No Replies

Help! Also need help with .MP3 file redirects

redirects, mp3

         

MountainQueen

6:54 am on Jan 16, 2009 (gmt 0)

10+ Year Member



Hey,

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?

jdMorgan

3:29 pm on Jan 16, 2009 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Change the regular-expressions pattern to match *any and all* .mp3 files:

RedirectMatch ^(.+)\.mp3$ http://www.example.com/BuyDownloads.htm

See the regular-expressions tutorial cited in our Forum Charter [webmasterworld.com] for more information.

Jim