I have the the following entry in my web.config in the root of my Asp.net project:
<urlMappings enabled="true">
<add url="~/Views/VoiceClip.wav" mappedUrl="~/Views/VoiceClipHandler.ashx"/>
</urlMappings>
This works fine when running the site in Visual Studio - I go to VoiceClip.wav and it redirects me to VoiceClipHandler.ashx.
However, when I deploy to IIS 6 the direct is no longer honoured and I get a 404. Any idea why?