I have a problem with a link in a newsletter. The link point to a file (.wav) who is on the server but when I click on it on the newsletter I got an http 400 error, which means the file is missing. But it is on my server.
I've tried to make a redirection to another file (.zip) The redirection doesn't work but I can download the file.
My file is called like that: trak(Extended_Intro+Outro).wav
and the zip is: track.zip
My htaccess looks like that:
AddType audio/x-wav .wav
AddType audio /wav .Wav
AddType application/octet-stream .wav
Redirect 301 /newsletter/music/track(Extended_Intro+Outro).wav
http://mysite/newsletter/music/track.zip
What I am doing wrong?
Thanks for help.
Regards